17 lines
407 B
SCSS
17 lines
407 B
SCSS
// Light mode colors
|
|
:root {
|
|
--faded-text-color: #303030;
|
|
--background-color: #6d695c;
|
|
--main-color: #E0E0E0;
|
|
--border-color: white;
|
|
--tertiary-color: lightgray;
|
|
--fourth-color: darkgray;
|
|
--fun-color: #4CAF50;
|
|
--angry-color: red;
|
|
--text-color: #242424;
|
|
--darker-color: #ebebeb;
|
|
}
|
|
|
|
|
|
$clean-font: sans-serif;
|
|
$content-font: Charter, 'Bitstream Charter', 'Sitka Text', Cambria, serif; |