
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.
13 lines
379 B
SCSS
13 lines
379 B
SCSS
$main-theme-color: hotpink;
|
|
$body-bg-color: lighten($main-theme-color, 25%);
|
|
$anchor-color: $main-theme-color;
|
|
$main-text-color: #333;
|
|
$border-color: #dadada;
|
|
$main-bg-color: white;
|
|
$secondary-text-color: white;
|
|
$toast-border: #fafafa;
|
|
$toast-bg: #333;
|
|
$focus-outline: lighten($main-theme-color, 15%);
|
|
$compose-background: lighten($main-theme-color, 17%);
|
|
|
|
@import "_base.scss";
|