mirror of
https://git.sr.ht/~cadence/cloudtube
synced 2026-05-26 12:32:25 +00:00
8 lines
192 B
SCSS
8 lines
192 B
SCSS
// extend regular light theme to change a couple of shades
|
|
@use "light";
|
|
@use "sass:map";
|
|
|
|
// this section is for colour meanings
|
|
$theme: map.merge(light.$theme, (
|
|
"edge-grey": #c0c0c0,
|
|
));
|