Implement dark theme colors

This commit is contained in:
Riyyi
2025-04-03 00:00:03 +02:00
parent 6d89d2bd70
commit fb261625ff
7 changed files with 31 additions and 10 deletions
+1 -1
View File
@@ -24,7 +24,7 @@
left: calc(100vw - (100vw - 960px) / 2 + 12px);
padding: 20px 5px 20px 0;
border-radius: 6px;
background-color: #fff;
background-color: var(--bs-body-bg);
}
}
+1 -1
View File
@@ -30,6 +30,6 @@ nav {
}
[data-bs-theme=dark] nav {
box-shadow: 0 .25rem .5rem rgba(255, 0, 0, .28);
box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .23);
}
</style>