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= ** =generated/.config/wofi/style.css=
This is the default layout for wofi This is the default layout for wofi
#+BEGIN_SRC css :tangle generated/.config/wofi/style.css :noweb yes :mkdirp yes :eval never #+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"; @import "~/.config/shared/Colors.css";
/* --- GLOBAL --- */ /* =========================
* { GLOBAL
background-color: @base; ========================= */
* {
background-color: transparent;
color: @text; color: @text;
font-family: "JetBrainsMono Nerd Font", monospace; font-family: "JetBrainsMono Nerd Font", monospace;
font-size: 12pt; font-size: 12pt;
} }
/* --- MAIN WINDOW (drun + dmenu unified) --- */ /* =========================
#window, #main, #outer-box, #dmenu { OUTER BORDER (REAL WORKING GRADIENT BORDER)
background: ========================= */
linear-gradient(@base, @base) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
border: 2px solid transparent; #window {
background: transparent;
}
#outer-box {
background: linear-gradient(45deg, @blue, @green);
padding: 2px;
border-radius: 28px; border-radius: 28px;
}
#inner-box {
background: rgba(30, 30, 46, 0.92); /* controlled transparency */
border-radius: 26px;
padding: 12px; padding: 12px;
margin: 0;
width: 400px; width: 400px;
box-shadow: box-shadow:
0 10px 30px rgba(0,0,0,0.35), 0 10px 30px rgba(0,0,0,0.4);
0 0 0 1px rgba(255,255,255,0.03) inset;
} }
/* --- INNER LAYOUT --- */ /* =========================
#inner-box { INPUT
spacing: 6px; ========================= */
}
/* --- INPUT FIELD --- */
#input { #input {
background-color: @surface0; background-color: @surface0;
color: @text; color: @text;
border: 1px solid @surface1; border: 1px solid @surface1;
border-radius: 20px; border-radius: 18px;
padding: 8px 14px; padding: 8px 14px;
margin-bottom: 10px; margin-bottom: 10px;
transition: all 0.15s ease;
} }
#input:focus { #input:focus {
border: 1px solid @blue; border: 1px solid @blue;
} }
/* --- ENTRY (base) --- */ /* =========================
ENTRIES (DARKER + CLEARER)
========================= */
#entry { #entry {
background-color: rgba(255,255,255,0.04); background-color: rgba(0, 0, 0, 0.35);
color: @subtext1; color: @subtext1;
border-radius: 20px; border-radius: 18px;
padding: 8px 14px; padding: 8px 14px;
margin: 2px 0; margin: 2px 0;
border: 2px solid transparent;
transition: all 0.15s ease; transition: all 0.15s ease;
} }
/* --- ENTRY HOVER / FOCUS --- */ /* hover */
#entry:focus { #entry:focus {
background: background-color: rgba(0, 0, 0, 0.45);
linear-gradient(@base, @base) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
color: @lavender; color: @lavender;
} }
/* --- ENTRY SELECTED --- */ /* =========================
#entry:selected { SELECTED (REAL GRADIENT FIX)
background: ========================= */
linear-gradient(@base, @base) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
color: @text; #entry:selected {
background: linear-gradient(45deg, @blue, @green);
color: @base;
font-weight: bold;
} }
/* --- ICONS (drun only) --- */ /* =========================
ICONS
========================= */
#entry image { #entry image {
margin-right: 10px; margin-right: 10px;
opacity: 0.85; opacity: 0.85;
} }
/* --- SCROLL AREA --- */ /* =========================
#scroll { SCROLLBAR
margin-top: 6px; ========================= */
}
/* --- SCROLLBAR --- */
#scrollbar { #scrollbar {
background-color: @surface0; background-color: @surface0;
border-radius: 20px; border-radius: 20px;
@@ -4626,7 +4625,9 @@ This is the default layout for wofi
border-radius: 20px; border-radius: 20px;
} }
/* --- PROMPT --- */ /* =========================
PROMPT
========================= */
#prompt { #prompt {
color: @subtext0; color: @subtext0;
margin-right: 6px; margin-right: 6px;