add dark theme
This commit is contained in:
parent
f7e956b2c2
commit
1fb80d0674
3 changed files with 41 additions and 5 deletions
|
@ -17,6 +17,7 @@
|
||||||
background: var(--gradient) fixed;
|
background: var(--gradient) fixed;
|
||||||
margin: 1em;
|
margin: 1em;
|
||||||
|
|
||||||
|
--text-col: white;
|
||||||
--nsfw-sticker-rotate: 15deg;
|
--nsfw-sticker-rotate: 15deg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,9 +31,10 @@ h2 { font-size: 125%; }
|
||||||
|
|
||||||
body {
|
body {
|
||||||
--shadow: hsl(42deg, 82%, 90%, 75%);
|
--shadow: hsl(42deg, 82%, 90%, 75%);
|
||||||
|
--border-col: var(--text-col);
|
||||||
|
|
||||||
background: hsla(0, 0%, 0%, 60%);
|
background: hsla(0, 0%, 0%, 60%);
|
||||||
border: 3px solid white;
|
border: 3px solid var(--border-col);
|
||||||
box-shadow: 0 0 3em var(--shadow);
|
box-shadow: 0 0 3em var(--shadow);
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
|
@ -40,7 +42,7 @@ body {
|
||||||
margin: 2em auto 3.5em;
|
margin: 2em auto 3.5em;
|
||||||
border-radius: 1.5em;
|
border-radius: 1.5em;
|
||||||
|
|
||||||
color: white;
|
color: var(--text-col);
|
||||||
--text-shadow: 2px 2px 3px hsl(0, 0%, 0%, 75%);
|
--text-shadow: 2px 2px 3px hsl(0, 0%, 0%, 75%);
|
||||||
text-shadow: var(--text-shadow);
|
text-shadow: var(--text-shadow);
|
||||||
}
|
}
|
||||||
|
@ -77,3 +79,37 @@ footer {
|
||||||
text-align: baseline;
|
text-align: baseline;
|
||||||
height: 1em;
|
height: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
:root {
|
||||||
|
--gradient:
|
||||||
|
linear-gradient(135deg,
|
||||||
|
hsl(42deg, 27%, 25%),
|
||||||
|
hsl(348deg, 27%, 25%),
|
||||||
|
hsl(334deg, 32%, 25%),
|
||||||
|
hsl(234deg, 57%, 23%),
|
||||||
|
hsl(195deg, 27%, 20%),
|
||||||
|
hsl(155deg, 22%, 20%)
|
||||||
|
);
|
||||||
|
--text-col: hsl(55deg, 60%, 90%);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-contrast: high) {
|
||||||
|
:root {
|
||||||
|
--text-col: white;
|
||||||
|
background: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
border: unset;
|
||||||
|
box-shadow: unset;
|
||||||
|
background: unset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
--shadow: hsl(42deg, 82%, 90%, 20%);
|
||||||
|
--border-col: black;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -32,7 +32,7 @@ body {
|
||||||
|
|
||||||
.item:not(.year-marker) {
|
.item:not(.year-marker) {
|
||||||
box-shadow: var(--text-shadow);
|
box-shadow: var(--text-shadow);
|
||||||
border: var(--border-thickness) solid white;
|
border: var(--border-thickness) solid var(--text-col);
|
||||||
border-radius: 0.5em;
|
border-radius: 0.5em;
|
||||||
background: hsl(340, 45%, 65%);
|
background: hsl(340, 45%, 65%);
|
||||||
}
|
}
|
||||||
|
@ -48,7 +48,7 @@ figcaption {
|
||||||
bottom: -1px;
|
bottom: -1px;
|
||||||
left: -1px;
|
left: -1px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border: 1px solid white;
|
border: 1px solid var(--text-col);
|
||||||
display: block;
|
display: block;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background: hsl(0, 0%, 0%, 75%);
|
background: hsl(0, 0%, 0%, 75%);
|
||||||
|
|
|
@ -13,7 +13,7 @@ body {
|
||||||
width: min-content;
|
width: min-content;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border: 2px solid white;
|
border: 2px solid var(--text-col);
|
||||||
border-radius: 1em;
|
border-radius: 1em;
|
||||||
box-shadow: var(--text-shadow);
|
box-shadow: var(--text-shadow);
|
||||||
background: hsl(340, 45%, 65%);
|
background: hsl(340, 45%, 65%);
|
||||||
|
|
Loading…
Reference in a new issue