1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-25 07:37:46 +02:00
keeweb/app/styles/base/_colors.scss

35 lines
553 B
SCSS

$black: #111;
$white: #d8e5f1;
$red: #df3c06;
$orange: #fbac45;
$yellow: #e9d92a;
$green: #0dc94b;
$blue: #4e6af8;
$violet: #d946db;
$all-colors: (
'white': $white,
'black': $black,
'red': $red,
'orange': $orange,
'yellow': $yellow,
'green': $green,
'blue': $blue,
'violet': $violet
);
@each $col, $val in $all-colors {
.#{$col}-color {
color: #{$val};
}
}
.muted-color {
color: var(--muted-color);
}
.action-color {
color: var(--action-color);
}
.error-color {
color: var(--error-color);
}