From a39a47640e832158a374c95e570b4b603217d2fc Mon Sep 17 00:00:00 2001 From: n Date: Wed, 26 Mar 2025 22:19:00 -0500 Subject: [PATCH] Add wofi style --- .config/wofi/style.css | 46 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .config/wofi/style.css diff --git a/.config/wofi/style.css b/.config/wofi/style.css new file mode 100644 index 0000000..44cd3a3 --- /dev/null +++ b/.config/wofi/style.css @@ -0,0 +1,46 @@ +* { + font-family: "JetBrainsMono Nerd Font Mono", monospace; +} + +window { + background-color: #3B4252ac; +} + +#input { + margin: 5px; + border-radius: 0px; + border: none; + background-color: #3B4252ac; + color: white; +} + +#inner-box { + background-color: #383C4Aac; +} + +#outer-box { + margin: 2px; + padding: 10px; + background-color: #383C4Aac; +} + +#scroll { + margin: 5px; +} + +#text { + padding: 4px; + color: white; +} + +#entry:nth-child(even){ + background-color: #404552ac; +} + +#entry:selected { + background-color: #4C566Aac; +} + +#text:selected { + background: transparent; +} \ No newline at end of file