mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-23 08:13:01 +00:00
22 lines
530 B
SCSS
22 lines
530 B
SCSS
|
@charset "utf-8";
|
||
|
@use "sass:map";
|
||
|
|
||
|
//=====================
|
||
|
// custom color scheme
|
||
|
//=====================
|
||
|
|
||
|
$advent22-colors: (
|
||
|
"primary": #945DE1,
|
||
|
"link": #64B4BD,
|
||
|
"info": #8C4E80,
|
||
|
"success": #7E8E2B,
|
||
|
"warning": #F6CA6B,
|
||
|
"danger": #C5443B,
|
||
|
);
|
||
|
|
||
|
$primary: map.get($advent22-colors, "primary");
|
||
|
$link: map.get($advent22-colors, "link");
|
||
|
$info: map.get($advent22-colors, "info");
|
||
|
$success: map.get($advent22-colors, "success");
|
||
|
$warning: map.get($advent22-colors, "warning");
|
||
|
$danger: map.get($advent22-colors, "danger");
|