let chatgpt generate the gtk4 theme
parent
cd6b0d7b90
commit
365ed4b896
|
|
@ -0,0 +1,90 @@
|
||||||
|
/* Base reset */
|
||||||
|
* {
|
||||||
|
font-family: "Agave Nerd Font Mono", sans-serif;
|
||||||
|
font-size: 14pt;
|
||||||
|
color: #b0b4bc;
|
||||||
|
background-color: #1a1a1a;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Window styling */
|
||||||
|
window {
|
||||||
|
background-color: #1a1a1a;
|
||||||
|
color: #b0b4bc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Buttons and entries */
|
||||||
|
button, entry, .button {
|
||||||
|
background-color: #1a1a1a;
|
||||||
|
color: #5018dd;
|
||||||
|
border: 3px solid #5018dd;
|
||||||
|
border-radius: 25px;
|
||||||
|
padding: 5px;
|
||||||
|
margin: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:hover, entry:focus {
|
||||||
|
background-color: #5018dd;
|
||||||
|
color: #1a1a1a;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Sliders and scales */
|
||||||
|
scale trough {
|
||||||
|
background-color: #5018dd;
|
||||||
|
border-radius: 50px;
|
||||||
|
min-height: 3px;
|
||||||
|
min-width: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
scale trough highlight {
|
||||||
|
background-color: #E40046;
|
||||||
|
border-radius: 10px;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Labels and specific classes */
|
||||||
|
.label-ram {
|
||||||
|
font-size: larger;
|
||||||
|
}
|
||||||
|
|
||||||
|
.metric {
|
||||||
|
background-color: #1a1a1a;
|
||||||
|
color: #5018dd;
|
||||||
|
border: 3px solid #5018dd;
|
||||||
|
border-radius: 25px;
|
||||||
|
padding: 5px;
|
||||||
|
margin: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Custom classes for clock, workspace, etc. */
|
||||||
|
.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;
|
||||||
|
}
|
||||||
|
|
||||||
Loading…
Reference in New Issue