19 lines
No EOL
379 B
SCSS
19 lines
No EOL
379 B
SCSS
@use "sass:color";
|
|
|
|
$title-font: 'Pixelify Sans', sans-serif;
|
|
$body-font: sans-serif;
|
|
$input-font: $body-font;
|
|
$background: #f2f2f2;
|
|
|
|
|
|
$colour-confirm: #00aa00;
|
|
$text-on-confirm: black;
|
|
|
|
$colour-neutral: #007ACC;
|
|
$text-on-neutral: white;
|
|
|
|
$colour-danger: red;
|
|
$colour-danger-d20: color.scale($colour-danger, $lightness: -20%);
|
|
|
|
$text-on-danger: white;
|
|
$text-on-danger-d20: white; |