Created
March 24, 2025 20:05
-
-
Save alaestor/752746c6c3572d1c1353acc722d92853 to your computer and use it in GitHub Desktop.
My css theme for discord.
This file contains hidden or 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 100 darknacho | |
| * @author Alaestor Weissman | |
| * @version 0.1.0 | |
| * @description Dark Orange Colorscheme with a pixel nacho | |
| */ | |
| .theme-light, | |
| .theme-dark { | |
| --background-primary: rgb(17, 17, 17); | |
| --background-secondary: #131313; | |
| --background-secondary-alt: #171717; | |
| --background-tertiary: #1c1b1b; | |
| --background-floating: #040404; | |
| --background-accent: rgba(255, 255, 255, 0.1); | |
| --user-text-color: #f0f0f0; | |
| --background-message-hover: rgba(47, 47, 34, 0.3); | |
| --text-normal: #eae1ad; | |
| --text-primary: #ff04e4; | |
| --text-secondary: #ea00ff; | |
| --text-muted: #656a4c; | |
| --channeltextarea-background: #000; | |
| --background-modifier-accent: rgb(152, 91, 1); | |
| --selected: #ffc80036; | |
| /* user names and titles etc */ | |
| --header-primary: rgb(215, 134, 0); | |
| --header-secondary: rgb(0, 215, 211); | |
| --header-muted: #e100ff; | |
| --subheader-tertiary: rgb(0, 215, 32); | |
| --border-bottom-color: rgb(239, 5, 5); | |
| } | |
| ::-webkit-scrollbar-track, | |
| ::-webkit-scrollbar-thumb | |
| {display: none !important;} | |
| [class^=bd-addon], | |
| [class^=contentWrapper], | |
| [class^=focusLock] > *, | |
| [class^=modalSize], | |
| [class^=pageWrapper], | |
| [class^=peopleColumn], | |
| [class^=jumpToPresentBar] | |
| { background: var(--background-primary)!important } | |
| /* top bar */ | |
| [class^=searchBar_], | |
| [class^=title_] | |
| { background: var(--background-secondary-alt)!important } | |
| /* top bar weird shadow */ | |
| [class^=children_]:after | |
| {display: none} | |
| /* top bar search boxes */ | |
| [class^=searchBarComponent_], | |
| [class=DraftEditor-root] | |
| { background: var(--background-primary)!important } | |
| [data-list-item-id="guildsnav___home"] { | |
| background-image: url("https://i.imgur.com/frFzz7e.gif"); | |
| background-size: 45px 45px; | |
| background-repeat: no-repeat; | |
| --bg-brand: rgba(0, 0, 0, 0); | |
| } | |
| [data-list-item-id="guildsnav___home"] > div { | |
| visibility: hidden; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment