Regenerated

This commit is contained in:
2026-04-13 14:37:51 +02:00
parent ee38939277
commit d6eeff7c1b
3 changed files with 483 additions and 428 deletions
+366 -427
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -4522,7 +4522,7 @@ This is the default layout for wofi
@import "~/.config/shared/Colors.css";
/* --- GLOBAL --- */
* {
* {
background-color: transparent;
color: @text;
font-family: "JetBrainsMono Nerd Font", monospace;
+116
View File
@@ -0,0 +1,116 @@
/* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */
/* --- Last variant --- */
/* --- Unified Wofi Theme --- */
@import "~/.config/shared/Colors.css";
/* --- 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-alpha, @base-alpha) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
border: 2px solid transparent;
border-radius: 28px;
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;
}
/* --- INNER LAYOUT --- */
#inner-box {
spacing: 6px;
}
/* --- INPUT FIELD --- */
#input {
background-color: @surface0;
color: @text;
border: 1px solid @surface1;
border-radius: 20px;
padding: 8px 14px;
margin-bottom: 10px;
transition: all 0.15s ease;
}
#input:focus {
border: 1px solid @blue;
}
/* --- ENTRY (base) --- */
#entry {
background-color: rgba(255,255,255,0.04);
color: @subtext1;
border-radius: 20px;
padding: 8px 14px;
margin: 2px 0;
border: 2px solid transparent;
transition: all 0.15s ease;
}
/* --- ENTRY HOVER / FOCUS --- */
#entry:focus {
background:
linear-gradient(@base-alpha, @base-alpha) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
color: @lavender;
}
/* --- ENTRY SELECTED --- */
#entry:selected {
background:
linear-gradient(@base-alpha, @base-alpha) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
color: @text;
}
/* --- ICONS (drun only) --- */
#entry image {
margin-right: 10px;
opacity: 0.85;
}
/* --- SCROLL AREA --- */
#scroll {
margin-top: 6px;
}
/* --- 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;
}