dalfuss.net/quartz/components/styles/darkmode.scss

49 lines
687 B
SCSS
Raw Permalink Normal View History

2023-06-07 02:48:37 +00:00
.darkmode {
position: relative;
2023-06-18 17:47:07 +00:00
width: 20px;
height: 20px;
margin: 0 10px;
2024-11-16 22:07:50 +00:00
& > .toggle {
display: none;
box-sizing: border-box;
}
2023-06-07 02:48:37 +00:00
& svg {
2024-11-16 22:07:50 +00:00
cursor: pointer;
opacity: 0;
2023-06-07 02:48:37 +00:00
position: absolute;
width: 20px;
height: 20px;
top: calc(50% - 10px);
fill: var(--darkgray);
transition: opacity 0.1s ease;
}
}
2023-09-17 17:29:20 +00:00
:root[saved-theme="dark"] {
color-scheme: dark;
}
:root[saved-theme="light"] {
color-scheme: light;
}
2024-11-16 22:07:50 +00:00
:root[saved-theme="dark"] .toggle ~ label {
2023-06-07 02:48:37 +00:00
& > #dayIcon {
2024-11-16 22:07:50 +00:00
opacity: 0;
2023-06-07 02:48:37 +00:00
}
& > #nightIcon {
2024-11-16 22:07:50 +00:00
opacity: 1;
2023-06-07 02:48:37 +00:00
}
}
2024-11-16 22:07:50 +00:00
:root .toggle ~ label {
2023-06-07 02:48:37 +00:00
& > #dayIcon {
2024-11-16 22:07:50 +00:00
opacity: 1;
2023-06-07 02:48:37 +00:00
}
& > #nightIcon {
2024-11-16 22:07:50 +00:00
opacity: 0;
2023-06-07 02:48:37 +00:00
}
}