The first working Theme Settings

This commit is contained in:
sageTheDM 2024-09-23 11:55:58 +02:00
parent 1718c9cf69
commit f5b1e80c6d
16 changed files with 517 additions and 250 deletions

View file

@ -1,6 +1,6 @@
header {
background-color: var(--background-color);
color: black;
background-color: var(--header-background-color); /* Use the new header background color */
color: var(--header-text-color); /* Use the new header text color */
width: 100%;
text-decoration: none;
position: fixed;
@ -24,7 +24,7 @@ header img {
header a,
header li button {
color: black;
color: var(--header-text-color); /* Use the new header text color */
text-decoration: none;
transition: color 0.3s;
border: none;
@ -34,5 +34,5 @@ header li button {
header a:hover,
header li button:hover {
color: var(--input-button-color);
color: var(--input-button-color); /* Keep the hover color */
}