21 lines
346 B
SCSS
21 lines
346 B
SCSS
/* Overrides for the welcome page background stuff */
|
|
|
|
/* For now we'll just worry about dark mode
|
|
Light mode gets fucked here lmao
|
|
*/
|
|
|
|
$top-grey: #424242;
|
|
$back-grey: #303030;
|
|
$bar-grey: #212121;
|
|
|
|
$text-norm: whitesmoke;
|
|
$text-bold: white;
|
|
|
|
$heading-pink: #EB2C68;
|
|
body {
|
|
background: $back-grey;
|
|
}
|
|
|
|
.nav-link {
|
|
color: $text-bold;
|
|
} |