Files
nixos/Droidnix/generated/.config/wofi/style.css
T
2026-04-13 16:11:42 +02:00

128 lines
2.5 KiB
CSS

/* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */
@import "~/.config/shared/Colors.css";
/*
@define-color green #a6e3a1;
@define-color blue #89b4fa;
*/
/* =========================
GLOBAL
========================= */
* {
background-color: transparent;
color: @text;
font-family: "JetBrainsMono Nerd Font", monospace;
font-size: 12pt;
}
/* =========================
OUTER BORDER (GRADIENT)
========================= */
#window {
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 {
background: linear-gradient(45deg, @blue, @green);
border-radius: 30px;
padding: 6px; /* IMPORTANT: must be larger than before */
}
/* INNER PANEL */
#inner-box {
background: rgba(30, 30, 46, 0.98);
border-radius: 24px;
padding: 12px;
width: 400px;
box-shadow:
0 0 25px rgba(0,0,0,0.6),
0 0 0 1px rgba(255,255,255,0.04);
}
/* =========================
INPUT
========================= */
#input {
background-color: @surface0;
color: @text;
border: 1px solid @surface1;
border-radius: 18px;
padding: 8px 14px;
margin-bottom: 10px;
}
#input:focus {
border: 1px solid @blue;
}
/* =========================
ENTRIES
========================= */
#entry {
background-color: transparent;
color: @subtext1;
border-radius: 18px;
padding: 8px 14px;
margin: 2px 0;
transition: all 0.15s ease;
}
#entry:focus {
background-color: rgba(0, 0, 0, 0.15);
color: @lavender;
}
/* =========================
SELECTED (GRADIENT)
========================= */
#entry:selected {
background: linear-gradient(45deg, @blue, @green);
color: @base;
font-weight: bold;
}
/* =========================
ICONS
========================= */
#entry image {
margin-right: 10px;
opacity: 0.85;
}
/* =========================
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;
}