48a1bd47b3
The point of this PR is to make it easier to implement scrollbars (#683). With this PR, the themes move from a body tag-based system (e.g. `body.theme-scarlet`) to a system where they simply declare global CSS and we use CSS specificity order to give us the right theme.
14 lines
449 B
SCSS
14 lines
449 B
SCSS
$main-theme-color: #5263af;
|
|
$body-bg-color: #0f1427;
|
|
$main-bg-color: #212433;
|
|
$anchor-color: lighten($main-theme-color, 20%);
|
|
$main-text-color: #fafaff;
|
|
$border-color: lighten($main-bg-color, 16%);
|
|
$secondary-text-color: #f6f6ff;
|
|
$toast-border: $main-theme-color;
|
|
$toast-bg: lighten($body-bg-color, 4%);
|
|
$focus-outline: darken($main-theme-color, 10%);
|
|
$compose-background: darken($main-theme-color, 12%);
|
|
|
|
@import "_base.scss";
|
|
@import "_dark.scss"; |