Dotfiles/gtk-themes/cyberqueer/gtk-4.0/gtk.css

169 lines
3.3 KiB
CSS

/* Base reset */
* {
all: unset;
font-family: "Agave Nerd Font Mono", sans-serif;
font-size: 14pt;
color: #d6abab; /* Updated text color */
background-color: #1a1a1a;
border-radius: 15px;
}
/* Window styling */
window {
background-color: #1a1a1a;
color: #d6abab; /* Updated text color */
padding: 20px; /* Increased padding for window */
}
/* Thunar / GTK3 selection fixes */
.rubberband {
background-color: rgba(80, 24, 221, 0.2); /* translucent purple */
border: none;
border-radius: 5px;
}
/* Selected items (in icon view, list view, etc.) */
*:selected,
.view:selected,
iconview:selected,
treeview:selected,
list:selected,
row:selected {
color: #5018DD; /* readable text */
border-width: 5px;
border-color: #E40046;
}
/* Also handle focus highlight for keyboard navigation */
*:selected:focus,
.view:selected:focus,
row:selected:focus {
background-color: rgba(80, 24, 221, 0.35);
color: #E40046; /* readable text */
}
/* Smooth out / disable the dark flash when reaching scroll limits */
overshoot.top,
overshoot.bottom,
overshoot.left,
overshoot.right {
background: transparent; /* removes the opaque overlay */
background-color: rgba(80, 24, 221, 0.08); /* faint translucent purple instead */
border: none;
box-shadow: none;
margin: 0;
min-height: 0;
min-width: 0;
}
/* Optional: make it fade faster for less distraction */
overshoot {
transition: background-color 0.15s ease-in-out;
}
/* 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;
}
.music, .clock, .workspace-button {
background-color: #1a1a1a;
color: #5018dd;
border: 3px solid #5018dd;
border-radius: 25px;
padding: 5px;
margin: 4px;
}
/* Scrollbars */
scrollbar {
background-color: none;
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;
}
/* Top menu bar (File, Edit, View, etc.) */
menubar {
background-color: #1a1a1a;
padding: 4px 8px;
}
/* Individual menu items */
menubar > menuitem {
padding: 4px 10px;
margin: 0 4px; /* spacing between each item */
border-radius: 8px;
color: #d6abab;
}
/* Hover state */
menubar > menuitem:hover {
background-color: rgba(80, 24, 221, 0.2);
color: #ffffff;
}
/* Active/open menu */
menubar > menuitem:active,
menubar > menuitem:checked {
background-color: rgba(80, 24, 221, 0.35);
color: #ffffff;
}