Regenerated

This commit is contained in:
2026-04-13 14:45:02 +02:00
parent e858e6c103
commit 3034230047
2 changed files with 501 additions and 444 deletions
+451 -395
View File
File diff suppressed because it is too large Load Diff
+50 -49
View File
@@ -4516,105 +4516,104 @@ prompt = > ...
** =generated/.config/wofi/style.css=
This is the default layout for wofi
#+BEGIN_SRC css :tangle generated/.config/wofi/style.css :noweb yes :mkdirp yes :eval never
/* --- Last variant --- */
/* --- Unified Wofi Theme --- */
@import "~/.config/shared/Colors.css";
/* --- GLOBAL --- */
* {
background-color: @base;
/* =========================
GLOBAL
========================= */
* {
background-color: transparent;
color: @text;
font-family: "JetBrainsMono Nerd Font", monospace;
font-size: 12pt;
}
/* --- MAIN WINDOW (drun + dmenu unified) --- */
#window, #main, #outer-box, #dmenu {
background:
linear-gradient(@base, @base) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
/* =========================
OUTER BORDER (REAL WORKING GRADIENT BORDER)
========================= */
border: 2px solid transparent;
#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;
margin: 0;
width: 400px;
box-shadow:
0 10px 30px rgba(0,0,0,0.35),
0 0 0 1px rgba(255,255,255,0.03) inset;
0 10px 30px rgba(0,0,0,0.4);
}
/* --- INNER LAYOUT --- */
#inner-box {
spacing: 6px;
}
/* --- INPUT FIELD --- */
/* =========================
INPUT
========================= */
#input {
background-color: @surface0;
color: @text;
border: 1px solid @surface1;
border-radius: 20px;
border-radius: 18px;
padding: 8px 14px;
margin-bottom: 10px;
transition: all 0.15s ease;
}
#input:focus {
border: 1px solid @blue;
}
/* --- ENTRY (base) --- */
/* =========================
ENTRIES (DARKER + CLEARER)
========================= */
#entry {
background-color: rgba(255,255,255,0.04);
background-color: rgba(0, 0, 0, 0.35);
color: @subtext1;
border-radius: 20px;
border-radius: 18px;
padding: 8px 14px;
margin: 2px 0;
border: 2px solid transparent;
transition: all 0.15s ease;
}
/* --- ENTRY HOVER / FOCUS --- */
/* hover */
#entry:focus {
background:
linear-gradient(@base, @base) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
background-color: rgba(0, 0, 0, 0.45);
color: @lavender;
}
/* --- ENTRY SELECTED --- */
#entry:selected {
background:
linear-gradient(@base, @base) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
/* =========================
SELECTED (REAL GRADIENT FIX)
========================= */
color: @text;
#entry:selected {
background: linear-gradient(45deg, @blue, @green);
color: @base;
font-weight: bold;
}
/* --- ICONS (drun only) --- */
/* =========================
ICONS
========================= */
#entry image {
margin-right: 10px;
opacity: 0.85;
}
/* --- SCROLL AREA --- */
#scroll {
margin-top: 6px;
}
/* --- SCROLLBAR --- */
/* =========================
SCROLLBAR
========================= */
#scrollbar {
background-color: @surface0;
border-radius: 20px;
@@ -4626,7 +4625,9 @@ This is the default layout for wofi
border-radius: 20px;
}
/* --- PROMPT --- */
/* =========================
PROMPT
========================= */
#prompt {
color: @subtext0;
margin-right: 6px;