set gtk3 theme to be the same as gtk4

main
Your Name 2025-05-28 15:45:45 +02:00
parent f5f318dec9
commit 2df06a2e87
1 changed files with 83 additions and 73 deletions

View File

@ -1,80 +1,90 @@
/* Base reset */
* {
font-family: "Agave Nerd Font Mono", sans-serif;
font-size: 14pt;
color: #d6abab; /* Updated text color */
background-color: #1a1a1a;
}
* { /* Window styling */
font-family: Agave Nerd Font Mono, Arial, sans-serif; window {
border-radius: 30px; background-color: #1a1a1a;
font-size: 12pt; color: #d6abab; /* Updated text color */
color: #E40046; padding: 20px; /* Increased padding for window */
background-color: #1a1a1a; }
/* Buttons and entries */
padding-top: 1px; button, entry, .button {
padding-bottom: 1px; background-color: #1a1a1a;
padding-right: 1px; color: #5018dd;
padding-left: 1px; border: 3px solid #5018dd;
border-radius: 25px;
margin-top: 1px; padding: 5px;
margin-bottom: 1px; margin: 4px;
margin-right: 1px; }
margin-left: 1px;
}
window {
color: #E40046;
background-color: #1a1a1a;
border-radius: 0px;
}
#input {
border: solid;
border-width: 8px;
color: #5018dd;
border-radius: 30px;
button:hover, entry:focus {
background-color: #5018dd;
color: #1a1a1a;
}
padding-top: 1px; /* Sliders and scales */
scale trough {
margin-top: 1px; background-color: #5018dd;
padding-right: 1px; border-radius: 50px;
padding-left: 1px; min-height: 3px;
min-width: 50px;
}
margin-right: 1px; scale trough highlight {
margin-left: 1px; background-color: #E40046;
} border-radius: 10px;
#entry { color: #000000;
color: #5018dd; }
}
#entry:selected { /* Labels and specific classes */
border: solid; .label-ram {
background-color: #1a1a1a; font-size: larger;
border-width: 4px; }
color: #E40046;
border-radius: 30px; .metric {
background-color: #1a1a1a;
} color: #5018dd;
border: 3px solid #5018dd;
border-radius: 25px;
padding: 5px;
margin: 4px;
}
.music, .clock, .workspace-button {
background-color: #1a1a1a;
color: #5018dd;
border: 3px solid #5018dd;
border-radius: 25px;
padding: 5px;
margin: 4px;
}
/* Scrollbars */
scrollbar {
background-color: #1a1a1a;
border-radius: 10px;
}
scrollbar slider {
background-color: #5018dd;
border-radius: 10px;
}
scrollbar slider:hover {
background-color: #E40046;
}
/* Tooltip styling */
tooltip {
background-color: #5018dd;
color: #1a1a1a;
border-radius: 10px;
padding: 5px;
}
notebook {
border: solid;
background-color: #1a1a1a;
border-width: 4px;
color: #5018dd;
border-radius: 30px;
}
button:active {
background-color: #E40046;
color: #5018dd;
}
checkbutton:checked {
color: #E40046;
background-color: #5018dd;
}
*:focus {
background-color: #1a1a1a;
color: #5018dd;
}
*:disabled {
background-color: #1a1a1a;
}