12 lines
435 B
SCSS
12 lines
435 B
SCSS
$font-family-sans-serif: 'Overpass', system-ui, -apple-system, sans-serif;
|
|
$font-size-base: 18px;
|
|
|
|
[data-bs-theme="light"] {
|
|
--site-background: linear-gradient(to bottom right, rgb(80, 160, 220), rgb(114, 165, 255));
|
|
--nav-background: rgba(211, 164, 255, 0.3);
|
|
}
|
|
|
|
[data-bs-theme="dark"] {
|
|
--site-background: linear-gradient(to bottom right, rgb(70, 81, 110), rgb(16, 20, 60));
|
|
--nav-background: rgba(28, 29, 54, 0.4);
|
|
} |