9b2b90b46e
* simplify theme definitions * remove rollup dep which is overkill * fix syntax error * fix lint * fix test
18 lines
509 B
SCSS
18 lines
509 B
SCSS
$main-theme-color: #999999;
|
|
$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, 15%);
|
|
$compose-background: lighten($main-theme-color, 17%);
|
|
|
|
@import "_base.scss";
|
|
|
|
body.the-body.offline { /* "the-body" is a specificity hack to allow offline to always trump themes */
|
|
@include baseTheme();
|
|
}
|