Regenerated

This commit is contained in:
2026-04-13 14:47:51 +02:00
parent 8de98fec4a
commit d5a86e576a
3 changed files with 483 additions and 421 deletions
+365 -420
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -4521,7 +4521,7 @@ This is the default layout for wofi
/* =========================
GLOBAL by Henro
========================= */
* {
* {
background-color: transparent;
color: @text;
font-family: "JetBrainsMono Nerd Font", monospace;
+117
View File
@@ -0,0 +1,117 @@
/* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */
@import "~/.config/shared/Colors.css";
/* =========================
GLOBAL by Henro
========================= */
* {
background-color: transparent;
color: @text;
font-family: "JetBrainsMono Nerd Font", monospace;
font-size: 12pt;
}
/* =========================
OUTER BORDER (REAL WORKING GRADIENT BORDER)
========================= */
#window {
background: transparent;
}
#outer-box {
background: linear-gradient(45deg, @blue, @green);
padding: 2px;
border-radius: 28px;
}
#inner-box {
background: rgba(30, 30, 46, 0.92); /* controlled transparency */
border-radius: 26px;
padding: 12px;
width: 400px;
box-shadow:
0 10px 30px rgba(0,0,0,0.4);
}
/* =========================
INPUT
========================= */
#input {
background-color: @surface0;
color: @text;
border: 1px solid @surface1;
border-radius: 18px;
padding: 8px 14px;
margin-bottom: 10px;
}
#input:focus {
border: 1px solid @blue;
}
/* =========================
ENTRIES (DARKER + CLEARER)
========================= */
#entry {
background-color: rgba(0, 0, 0, 0.35);
color: @subtext1;
border-radius: 18px;
padding: 8px 14px;
margin: 2px 0;
transition: all 0.15s ease;
}
/* hover */
#entry:focus {
background-color: rgba(0, 0, 0, 0.45);
color: @lavender;
}
/* =========================
SELECTED (REAL GRADIENT FIX)
========================= */
#entry:selected {
background: linear-gradient(45deg, @blue, @green);
color: @base;
font-weight: bold;
}
/* =========================
ICONS
========================= */
#entry image {
margin-right: 10px;
opacity: 0.85;
}
/* =========================
SCROLLBAR
========================= */
#scrollbar {
background-color: @surface0;
border-radius: 20px;
width: 6px;
}
#scrollbar handle {
background: linear-gradient(45deg, @blue, @green);
border-radius: 20px;
}
/* =========================
PROMPT
========================= */
#prompt {
color: @subtext0;
margin-right: 6px;
}