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

@ -36,8 +36,8 @@
/* Popup content box */
.popup-content {
background: var(--background-color);
color: var(--text-color);
background: var(--popup-background-color); /* Use variable for background color */
color: var(--popup-text-color); /* Use variable for text color */
padding: 30px;
border-radius: 10px;
width: 300px;
@ -63,7 +63,7 @@
/* Close button */
.close-popup {
background: red; /* Exception to the rule */
background: var(--close-button-color); /* Use variable for close button color */
color: var(--text-color);
border: none;
border-radius: 5px;
@ -73,7 +73,7 @@
}
.log-into-account {
background: green; /* Exception to the rule */
background: var(--login-button-color); /* Use variable for login button color */
color: var(--text-color);
border: none;
border-radius: 5px;
@ -111,6 +111,6 @@
}
.popup-content p {
color: var(--pop-up-text);
color: var(--popup-text-color); /* Use variable for paragraph text color */
margin: 10px;
}