151 lines
2.3 KiB
CSS
151 lines
2.3 KiB
CSS
@define-color window_bg_color #171717; /* Main dark background */
|
|
@define-color accent_bg_color #2A2A2A; /* Subtle dark-accent (replaces blue) */
|
|
@define-color theme_fg_color #E0E0E0; /* Light grey text */
|
|
@define-color error_bg_color #9A2B2B; /* Darker, muted red */
|
|
@define-color error_fg_color #F2DADA; /* Softer error fg */
|
|
|
|
* {
|
|
all: unset;
|
|
}
|
|
|
|
.normal-icons {
|
|
-gtk-icon-size: 16px;
|
|
}
|
|
|
|
.large-icons {
|
|
-gtk-icon-size: 32px;
|
|
}
|
|
|
|
scrollbar {
|
|
opacity: 0;
|
|
}
|
|
|
|
.box-wrapper {
|
|
box-shadow:
|
|
0 19px 38px rgba(0, 0, 0, 0.3),
|
|
0 15px 12px rgba(0, 0, 0, 0.22);
|
|
background: @window_bg_color;
|
|
padding: 20px;
|
|
border-radius: 20px;
|
|
border: 1px solid darker(@accent_bg_color);
|
|
}
|
|
|
|
.preview-box,
|
|
.elephant-hint,
|
|
.placeholder {
|
|
color: @theme_fg_color;
|
|
}
|
|
|
|
.search-container {
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.input placeholder {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.input selection {
|
|
background: lighter(@accent_bg_color);
|
|
}
|
|
|
|
.input {
|
|
caret-color: @theme_fg_color;
|
|
background: #1f1f1f; /* slightly lighter than main bg for contrast */
|
|
padding: 10px;
|
|
color: @theme_fg_color;
|
|
}
|
|
|
|
.list {
|
|
color: @theme_fg_color;
|
|
}
|
|
|
|
.item-box {
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.item-quick-activation {
|
|
background: alpha(@accent_bg_color, 0.25);
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
}
|
|
|
|
child:hover .item-box,
|
|
child:selected .item-box {
|
|
background: alpha(@accent_bg_color, 0.35);
|
|
}
|
|
|
|
.item-subtext {
|
|
font-size: 12px;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.providerlist .item-subtext {
|
|
font-size: unset;
|
|
opacity: 0.75;
|
|
}
|
|
|
|
.item-image-text {
|
|
font-size: 28px;
|
|
}
|
|
|
|
.preview {
|
|
border: 1px solid alpha(@accent_bg_color, 0.35);
|
|
border-radius: 10px;
|
|
color: @theme_fg_color;
|
|
}
|
|
|
|
.calc .item-text {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.symbols .item-image {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.todo.done .item-text-box {
|
|
opacity: 0.25;
|
|
}
|
|
|
|
.todo.urgent {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.todo.active {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.bluetooth.disconnected {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.preview .large-icons {
|
|
-gtk-icon-size: 64px;
|
|
}
|
|
|
|
.keybinds-wrapper {
|
|
border-top: 1px solid @accent_bg_color;
|
|
font-size: 12px;
|
|
opacity: 0.5;
|
|
color: @theme_fg_color;
|
|
}
|
|
|
|
.keybind-bind {
|
|
font-weight: bold;
|
|
text-transform: lowercase;
|
|
}
|
|
|
|
.error {
|
|
padding: 10px;
|
|
background: @error_bg_color;
|
|
color: @error_fg_color;
|
|
}
|
|
|
|
:not(.calc).current {
|
|
font-style: italic;
|
|
}
|
|
|
|
.preview-content.archlinuxpkgs {
|
|
font-family: monospace;
|
|
}
|