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
379 B
SCSS
14 lines
379 B
SCSS
$main-theme-color: #e04e41;
|
|
$body-bg-color: lighten($main-theme-color, 38%);
|
|
$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, 30%);
|
|
$compose-background: lighten($main-theme-color, 32%);
|
|
|
|
@import "_base.scss";
|