ngn e1d46adb1e
All checks were successful
Build and publish the docker image / build (push) Successful in 1m22s
fix theme selection
Signed-off-by: ngn <ngn@ngn.tf>
2025-01-19 23:34:29 +03:00

25 lines
592 B
SCSS

$_dark: (
text-accent: hsl(0, 0%, 100%),
text: hsl(0, 0%, 96%),
text-muted: hsl(0, 0%, 80%),
bg-accent: #232323,
bg: #000,
bg-muted: #141414,
link: hsl(339, 95%, 80%),
link-muted: hsl(344, 79%, 80%),
fill: hsl(339, 75%, 64%),
fill-muted: hsl(0, 0, 35%),
shadow: hsla(0, 0%, 0%, 1),
highlight: hsl(176, 43%, 46%),
gradient: (
radial-gradient(at 23% 32%, hsla(344, 79%, 40%, 0.04) 0px, transparent 70%),
radial-gradient(at 72% 55%, hsla(344, 79%, 40%, 0.05) 0px, transparent 50%),
),
scheme: dark,
);
$themes: (
light: $_dark, // yes
dark: $_dark,
);