19 lines
487 B
SCSS
19 lines
487 B
SCSS
$container-width: 960px;
|
|
$nav-height: 4em;
|
|
$header-height: 4em;
|
|
|
|
:root {
|
|
--container-width: #{$container-width};
|
|
--nav-height: #{$nav-height};
|
|
--header-height: #{$header-height};
|
|
--link-color: rgb(0,96,255);
|
|
--link-visited: rgb(140, 74, 194);
|
|
--primary-accent: rgb(0,96,255);
|
|
--primary-accent-transparent: rgba(0,96,255,0.25);
|
|
--primary-accent-text: #fff;
|
|
--ui-background: #fff;
|
|
--ui-background-track: #aaa;
|
|
--ui-text: #212121;
|
|
--ui-text-muted: #777;
|
|
--ui-text-bold: #000;
|
|
} |