Regenerated

This commit is contained in:
2026-04-13 16:11:42 +02:00
parent 6549c6b6fa
commit 18ff2b22b2
3 changed files with 421 additions and 436 deletions
+379 -411
View File
File diff suppressed because it is too large Load Diff
+12 -5
View File
@@ -4522,10 +4522,16 @@ This is the default layout for wofi
OUTER BORDER (GRADIENT) OUTER BORDER (GRADIENT)
========================= */ ========================= */
window { #window {
margin: 5px; background-color: rgba(30, 30, 46, 0.98);
border: 2px solid red; border-radius: 28px;
background-color: red;
/* THIS is your “border” */
box-shadow:
0 0 0 2px #89b4fa,
0 0 0 4px #a6e3a1,
0 10px 30px rgba(0,0,0,0.5);
} }
/* OUTER GLOW LAYER (THIS is your "border") */ /* OUTER GLOW LAYER (THIS is your "border") */
@@ -4619,7 +4625,8 @@ background-color: red;
#prompt { #prompt {
color: @subtext0; color: @subtext0;
margin-right: 6px; margin-right: 6px;
}#+END_SRC }
#+END_SRC
+30 -20
View File
@@ -1,8 +1,14 @@
/* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */ /* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */
@import "~/.config/shared/Colors.css"; @import "~/.config/shared/Colors.css";
/*
@define-color green #a6e3a1;
@define-color blue #89b4fa;
*/
/* ========================= /* =========================
GLOBAL by Henro GLOBAL
========================= */ ========================= */
* { * {
background-color: transparent; background-color: transparent;
@@ -12,28 +18,40 @@
} }
/* ========================= /* =========================
OUTER BORDER (REAL WORKING GRADIENT BORDER) OUTER BORDER (GRADIENT)
========================= */ ========================= */
#window { #window {
background: transparent; background-color: rgba(30, 30, 46, 0.98);
border-radius: 28px;
/* THIS is your “border” */
box-shadow:
0 0 0 2px #89b4fa,
0 0 0 4px #a6e3a1,
0 10px 30px rgba(0,0,0,0.5);
} }
/* OUTER GLOW LAYER (THIS is your "border") */
#outer-box { #outer-box {
background: linear-gradient(45deg, @blue, @green); background: linear-gradient(45deg, @blue, @green);
padding: 2px; border-radius: 30px;
border-radius: 28px;
padding: 6px; /* IMPORTANT: must be larger than before */
} }
/* INNER PANEL */
#inner-box { #inner-box {
background: rgba(30, 30, 46, 0.92); /* controlled transparency */ background: rgba(30, 30, 46, 0.98);
border-radius: 26px; border-radius: 24px;
padding: 12px; padding: 12px;
width: 400px; width: 400px;
box-shadow: box-shadow:
0 10px 30px rgba(0,0,0,0.4); 0 0 25px rgba(0,0,0,0.6),
0 0 0 1px rgba(255,255,255,0.04);
} }
/* ========================= /* =========================
@@ -42,10 +60,8 @@
#input { #input {
background-color: @surface0; background-color: @surface0;
color: @text; color: @text;
border: 1px solid @surface1; border: 1px solid @surface1;
border-radius: 18px; border-radius: 18px;
padding: 8px 14px; padding: 8px 14px;
margin-bottom: 10px; margin-bottom: 10px;
} }
@@ -55,33 +71,27 @@
} }
/* ========================= /* =========================
ENTRIES (DARKER + CLEARER) ENTRIES
========================= */ ========================= */
#entry { #entry {
background-color: rgba(0, 0, 0, 0.35); background-color: transparent;
color: @subtext1; color: @subtext1;
border-radius: 18px; border-radius: 18px;
padding: 8px 14px; padding: 8px 14px;
margin: 2px 0; margin: 2px 0;
transition: all 0.15s ease; transition: all 0.15s ease;
} }
/* hover */
#entry:focus { #entry:focus {
background-color: rgba(0, 0, 0, 0.45); background-color: rgba(0, 0, 0, 0.15);
color: @lavender; color: @lavender;
} }
/* ========================= /* =========================
SELECTED (REAL GRADIENT FIX) SELECTED (GRADIENT)
========================= */ ========================= */
#entry:selected { #entry:selected {
background: linear-gradient(45deg, @blue, @green); background: linear-gradient(45deg, @blue, @green);
color: @base; color: @base;
font-weight: bold; font-weight: bold;
} }