Last active
August 15, 2022 03:53
-
-
Save Lubba-64/07cf4043255749d2eb4aa6b6b65feafe 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
/* Vars. */ | |
:root { | |
--main-color: #ffa494; | |
--background-color: rgb(0, 0, 0); | |
} | |
/* Rounded Edges. */ | |
#app-mount { | |
border-radius: 20px; | |
background-color: transparent; | |
} | |
body { | |
background-color: transparent; | |
} | |
/* Text Color. */ | |
p { | |
color: var(--main-color) !important; | |
} | |
div { | |
color: var(--main-color) !important; | |
} | |
li { | |
color: var(--main-color) !important; | |
} | |
h1 { | |
color: var(--main-color) !important; | |
} | |
span { | |
color: var(--main-color); | |
} | |
/* Disables weird fade svg. */ | |
form::before { | |
display: none; | |
} | |
/* Disables weird fade svg. */ | |
section > div::after { | |
display: none; | |
} | |
/* For some reason there is an element right above the main discord button. This disables that, as it conflicts with a bunch of stuff. */ | |
nav > ul > div:nth-child(1) { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment