hugo-battheme/assets/scss/colors.scss

27 lines
373 B
SCSS
Raw Normal View History

2022-04-09 19:42:12 +00:00
$light-bg: #ffe7d6;
$light-fg: #73464c;
$light-ln: #ab5675;
$light-active: #72dcbb;
$dark-bg: black;
$dark-fg: white;
$dark-ln: blue;
$dark-active: green;
2022-04-09 16:00:33 +00:00
body {
2022-04-09 19:42:12 +00:00
&.light{
background-color: $light-bg;
color: $light-fg;
}
background-color: $dark-bg;
2022-04-09 20:23:18 +00:00
color: $dark-bg;
}
2022-04-09 16:00:33 +00:00
a {
}
a.footer-nav-item.active{
}
footer, footer a{
}