Skip to content

Instantly share code, notes, and snippets.

@Lubba-64
Last active August 15, 2022 03:53
Show Gist options
  • Save Lubba-64/07cf4043255749d2eb4aa6b6b65feafe to your computer and use it in GitHub Desktop.
Save Lubba-64/07cf4043255749d2eb4aa6b6b65feafe to your computer and use it in GitHub Desktop.
/* 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