set gtk3 theme to be the same as gtk4
parent
f5f318dec9
commit
2df06a2e87
|
|
@ -1,80 +1,90 @@
|
|||
|
||||
* {
|
||||
font-family: Agave Nerd Font Mono, Arial, sans-serif;
|
||||
border-radius: 30px;
|
||||
font-size: 12pt;
|
||||
color: #E40046;
|
||||
/* Base reset */
|
||||
* {
|
||||
font-family: "Agave Nerd Font Mono", sans-serif;
|
||||
font-size: 14pt;
|
||||
color: #d6abab; /* Updated text color */
|
||||
background-color: #1a1a1a;
|
||||
}
|
||||
|
||||
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
padding-right: 1px;
|
||||
padding-left: 1px;
|
||||
|
||||
margin-top: 1px;
|
||||
margin-bottom: 1px;
|
||||
margin-right: 1px;
|
||||
margin-left: 1px;
|
||||
}
|
||||
|
||||
window {
|
||||
color: #E40046;
|
||||
/* Window styling */
|
||||
window {
|
||||
background-color: #1a1a1a;
|
||||
border-radius: 0px;
|
||||
}
|
||||
#input {
|
||||
border: solid;
|
||||
border-width: 8px;
|
||||
color: #5018dd;
|
||||
border-radius: 30px;
|
||||
color: #d6abab; /* Updated text color */
|
||||
padding: 20px; /* Increased padding for window */
|
||||
}
|
||||
|
||||
|
||||
|
||||
padding-top: 1px;
|
||||
|
||||
margin-top: 1px;
|
||||
padding-right: 1px;
|
||||
padding-left: 1px;
|
||||
|
||||
margin-right: 1px;
|
||||
margin-left: 1px;
|
||||
}
|
||||
#entry {
|
||||
color: #5018dd;
|
||||
}
|
||||
|
||||
#entry:selected {
|
||||
border: solid;
|
||||
/* Buttons and entries */
|
||||
button, entry, .button {
|
||||
background-color: #1a1a1a;
|
||||
border-width: 4px;
|
||||
color: #E40046;
|
||||
border-radius: 30px;
|
||||
|
||||
}
|
||||
|
||||
notebook {
|
||||
border: solid;
|
||||
background-color: #1a1a1a;
|
||||
border-width: 4px;
|
||||
color: #5018dd;
|
||||
border-radius: 30px;
|
||||
border: 3px solid #5018dd;
|
||||
border-radius: 25px;
|
||||
padding: 5px;
|
||||
margin: 4px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
button:active {
|
||||
background-color: #E40046;
|
||||
color: #5018dd;
|
||||
}
|
||||
|
||||
checkbutton:checked {
|
||||
color: #E40046;
|
||||
button:hover, entry:focus {
|
||||
background-color: #5018dd;
|
||||
}
|
||||
*:focus {
|
||||
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;
|
||||
}
|
||||
*:disabled {
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue