Last active
October 20, 2024 06:38
-
-
Save BobbyWibowo/59b31ae2944494e72d9c4eff8fbd1806 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @name Material_Discord_Custom | |
* @version 2.0.2 | |
* @description A theme based on Google's Material Design | |
* @author CapnKitten | |
* | |
* @website https://github.com/BobbyWibowo/Material-Discord-Custom | |
* @source https://github.com/BobbyWibowo/Material-Discord-Custom | |
*/ | |
/** Material Discord by CapnKitten (22/01/2023) -- unix timestamp is mainly to enforce browser cache refresh **/ | |
@import url("https://capnkitten.github.io/BetterDiscord/Themes/Material-Discord/css/source.css?v=1718314993"); | |
@import url("https://bobbywibowo.github.io/Material-Discord-Custom/dist/src/source.css?v=2.0.2"); | |
/*@import url("http://localhost:10002/src/source.css?v=2.0.1");*/ | |
:root { | |
--app-font: Ubuntu, sans-serif; | |
--code-font: 'JetBrains Mono', monospace; | |
--accent-color: #4285f4; | |
--accent-color-hover: #3b5074; | |
--accent-color-active: #3daee9; | |
--accent-r: 66; | |
--accent-g: 133; | |
--accent-b: 244; | |
--accent-rgb: var(--accent-r) var(--accent-g) var(--accent-b); | |
--__spoiler-background-color--hidden: rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.4); | |
--__spoiler-background-color--hidden--hover: rgba(var(--accent-r), var(--accent-g), var(--accent-b), 0.7); | |
} | |
/** Fonts **/ | |
.contentColumnDefault-1VQkGM .ace_editor::before { | |
display: none !important; | |
} | |
/** Upstream font for title bar **/ | |
.wordmark-2u86JB.wordmarkWindows-2dq6rw::before, | |
.wordmark-2u86JB.wordmarkWindows-2dq6rw::after { | |
font-family: "Google Sans", sans-serif !important | |
} | |
/** Spoiler tag color **/ | |
.spoilerContent-32CqO- { | |
background-color: var(--__current--spoiler-background-color) !important; | |
} | |
/** Magane + BasicBackground **/ | |
/* | |
#maganeContainer { | |
--background-secondary: #000000; | |
--background-tertiary: #000000; | |
z-index: 1000; | |
position: relative; | |
} | |
*/ | |
/** Disable Gift button **/ | |
div[class*="buttons-"] button[aria-label="Send a gift"] { | |
display: none !important; | |
} | |
/** Fix Emojis/Stickers tabs background **/ | |
.drawerSizingWrapper-1txdWG .navList-YSb9UB:after { | |
display: none; | |
} | |
/** Members & Servers Counters **/ | |
#vc-friendcount, | |
#vc-guildcount { | |
font-weight: normal !important; | |
font-size: 10.5px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment