All checks were successful
Build and publish the docker image / build (push) Successful in 1m22s
Signed-off-by: ngn <ngn@ngn.tf>
25 lines
592 B
SCSS
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,
|
|
);
|