feat: Add inital dark/light mode switching
All checks were successful
Build Docker / Build Image (push) Successful in 2m10s
All checks were successful
Build Docker / Build Image (push) Successful in 2m10s
This commit is contained in:
@@ -4,6 +4,10 @@
|
||||
--bs-primary-text-emphasis: #622300;
|
||||
--bs-primary-bg-subtle: #FDDDCC;
|
||||
--bs-primary-border-subtle: #FBBC99;
|
||||
--bs-link-color: #F55700;
|
||||
--bs-link-color-rgb: 245,87,0;
|
||||
--bs-link-hover-color: rgba(245,87,0,0.61);
|
||||
--bs-link-hover-color-rgb: 245,87,0,0.61;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
|
||||
30
templates/assets/css/theme.css
Normal file
30
templates/assets/css/theme.css
Normal file
@@ -0,0 +1,30 @@
|
||||
[data-bs-theme=auto] .dark-only {
|
||||
display: none;
|
||||
}
|
||||
|
||||
[data-bs-theme=light] .dark-only {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* [data-bs-theme=dark] .dark-only {
|
||||
display: initial;
|
||||
}
|
||||
|
||||
[data-bs-theme=light] .light-only {
|
||||
display: initial;
|
||||
} */
|
||||
|
||||
[data-bs-theme=dark] .light-only {
|
||||
display: none;
|
||||
}
|
||||
|
||||
[data-bs-theme=dark] .page.landing-page {
|
||||
background: rgba(0,0,0,0.79);
|
||||
}
|
||||
|
||||
.clean-block.clean-hero::before {
|
||||
background: url("/assets/img/backgrounds/blocksaug.svg") center / contain no-repeat;
|
||||
color: rgba(0,0,0,0);
|
||||
filter: opacity(20%);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user