mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
* add inverted variables option * create inverted styles * add missed styles * add myself as contributor
40 lines
533 B
SCSS
40 lines
533 B
SCSS
body.inverted {
|
|
|
|
color: $fg-color-inverted;
|
|
background-color: $bg-color-inverted;
|
|
|
|
a {
|
|
color: $link-color-inverted;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
color: $alt-fg-color-inverted;
|
|
}
|
|
|
|
code {
|
|
background-color: $alt-bg-color-inverted;
|
|
color: $fg-color-inverted;
|
|
}
|
|
|
|
pre {
|
|
code {
|
|
background-color: inherit;
|
|
color: inherit;
|
|
}
|
|
}
|
|
|
|
blockquote {
|
|
border-left: 2px solid $alt-bg-color-inverted;
|
|
}
|
|
|
|
table td, table th {
|
|
border: 2px solid $alt-fg-color-inverted;
|
|
}
|
|
|
|
}
|