1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-28 07:50:55 +02:00
keeweb/app/styles/themes/_solarized-dark.scss
2020-12-01 19:28:07 +01:00

30 lines
710 B
SCSS

$themes: map-merge(
$themes,
(
sd:
map-merge(
$theme-defaults,
map-merge(
$light-colors,
(
background-color: #002b36,
medium-color: #93a1a1,
text-color: #839496,
action-color: #859900,
error-color: #dc322f,
mute-percent: 60%,
color-lightness-shift: 50%
)
)
)
)
);
body.th-sd {
--selected-item-text-color: #002b36;
.list__item--active .blue-color {
color: #0249bd;
}
}