24 lines
558 B
SCSS
24 lines
558 B
SCSS
|
$primary: #1e2932;
|
||
|
$primaryForeground: #f0f0f0;
|
||
|
$secondary: #00766c;
|
||
|
$secondaryForeground: $primaryForeground;
|
||
|
|
||
|
$backgroundColor: $primary;
|
||
|
$defaultTextColor: $primaryForeground;
|
||
|
|
||
|
$info: #49fb;
|
||
|
$infoText: darken($info, 42%);
|
||
|
$infoColor: desaturate($infoText, 50%);
|
||
|
|
||
|
$success: #5f5b;
|
||
|
$successText: darken($success, 45%);
|
||
|
$successColor: desaturate($successText, 50%);
|
||
|
|
||
|
$warning: #fc0b;
|
||
|
$warningText: darken($warning, 30%);
|
||
|
$warningColor: desaturate($warningText, 50%);
|
||
|
|
||
|
$error: #f00b;
|
||
|
$errorText: darken($error, 30%);
|
||
|
$errorColor: desaturate($errorText, 50%);
|