Regenerated

This commit is contained in:
2026-04-13 16:54:07 +02:00
parent 0416665b9d
commit dd82d1c560
2 changed files with 384 additions and 436 deletions
+381 -390
View File
File diff suppressed because it is too large Load Diff
+3 -46
View File
@@ -4501,52 +4501,36 @@ prompt = > ...
This is the default layout for wofi
#+BEGIN_SRC css :tangle generated/.config/wofi/style.css :noweb yes :mkdirp yes :eval never
@import "~/.config/shared/Colors.css";
@import "~/.config/shared/Colors.css";
/* =========================
GLOBAL
========================= */
* {
* {
background-color: transparent;
color: @text;
font-family: "JetBrainsMono Nerd Font", monospace;
font-size: 12pt;
}
/* =========================
WINDOW BORDER (STABLE)
========================= */
#window {
background: linear-gradient(45deg, @blue, @green);
border-radius: 28px;
padding: 2px;
}
/* MAIN PANEL */
#outer-box {
background-color: rgba(30, 30, 46, 0.98); /* almost solid */
border-radius: 26px;
padding: 12px;
}
/* remove conflicting layering */
#inner-box {
background: transparent;
padding: 0;
}
/* =========================
INPUT (STRONG + CLEAN)
========================= */
#input {
background-color: @surface1; /* stronger than surface0 */
color: @text;
border: 1px solid @surface2;
border-radius: 18px;
padding: 10px 14px;
margin-bottom: 10px;
}
@@ -4556,63 +4540,40 @@ This is the default layout for wofi
background-color: @surface2;
}
/* =========================
ENTRIES (BASE)
========================= */
#entry {
background-color: rgba(0, 0, 0, 0.35);
color: @subtext1;
border-radius: 18px;
padding: 10px 14px;
margin: 2px 0;
transition: all 0.15s ease;
}
/* hover */
#entry:hover {
background-color: rgba(0, 0, 0, 0.5);
color: @text;
}
/* =========================
FOCUS (keyboard navigation)
========================= */
#entry:focus {
background: linear-gradient(45deg, @blue, @green);
background-color: @surface2;
color: @lavender;
border-radius: 18px;
}
/* =========================
SELECTED (CLEAR + STRONG)
========================= */
#entry:selected {
background: linear-gradient(45deg, @blue, @green);
color: @base;
border-radius: 18px;
font-weight: bold;
}
/* =========================
ICONS
========================= */
#entry image {
margin-right: 10px;
opacity: 0.9;
}
/* =========================
SCROLLBAR
========================= */
#scrollbar {
background-color: @surface1;
border-radius: 20px;
@@ -4624,10 +4585,6 @@ This is the default layout for wofi
border-radius: 20px;
}
/* =========================
PROMPT
========================= */
#prompt {
color: @subtext0;
margin-right: 6px;