26 lines
380 B
SCSS
26 lines
380 B
SCSS
:root {
|
|
font-size: 16px;
|
|
|
|
--accent: #846bf7;
|
|
--accent-dim: #846bf760;
|
|
--accent-very-dim: #846bf716;
|
|
}
|
|
|
|
body {
|
|
background-color: #111118;
|
|
|
|
margin: 0;
|
|
position: relative;
|
|
}
|
|
|
|
* {
|
|
color: white;
|
|
font-family: "Nunito Sans", sans-serif;
|
|
font-optical-sizing: auto;
|
|
font-weight: 300;
|
|
font-style: normal;
|
|
font-variation-settings:
|
|
"wdth" 100,
|
|
"YTLC" 500;
|
|
}
|