diff options
Diffstat (limited to 'wofi')
| -rw-r--r-- | wofi/colors | 2 | ||||
| -rw-r--r-- | wofi/config | 1 | ||||
| -rw-r--r-- | wofi/style.css | 58 |
3 files changed, 44 insertions, 17 deletions
diff --git a/wofi/colors b/wofi/colors new file mode 100644 index 0000000..1c6bb43 --- /dev/null +++ b/wofi/colors @@ -0,0 +1,2 @@ +#F0EDEC +#2C363C diff --git a/wofi/config b/wofi/config index 6e48624..4e868f0 100644 --- a/wofi/config +++ b/wofi/config @@ -1,5 +1,6 @@ show=drun allow_images=true +insensitive=true lines=10 width=600 prompt=Search... diff --git a/wofi/style.css b/wofi/style.css index 4911161..15e1f4a 100644 --- a/wofi/style.css +++ b/wofi/style.css @@ -1,29 +1,53 @@ -window { - margin: 0px; - border: 2px solid #89b4fa; - background-color: #1e1e2e; - border-radius: 10px; +#window { + border: 3px solid rgba(--wofi-rgb-color1, 0.94); + background-color: rgba(--wofi-rgb-color1, 0.94); + font-size: 18px; + font-family: "JetbrainsMono Nerd Font"; +} + +#outer-box { + margin: 3px; } #input { - margin: 5px; - border: none; - padding: 8px; - color: #cdd6f4; - background-color: #313244; - border-radius: 8px; + border: 0; + border-radius: 0; + background-color: transparent; + color: --wofi-color0; + margin: 3px; +} + +#input image:first-child { + margin-left: -100px; +} + +#input image:last-child { + margin-right: -100px; } -#inner-box { - margin: 5px; +#input:focus { + border-radius: 0; } #entry { - padding: 5px; - border-radius: 6px; + color: --wofi-color0; } #entry:selected { - background-color: #89b4fa; - color: #1e1e2e; + background-color: rgba(--wofi-rgb-color0, 0.94); +} + +#text:selected { + color: --wofi-color1; +} + +#img { + margin-right: 5px; + margin-left: 3px; + margin-top: 3px; + margin-bottom: 3px; +} + +#text { + margin-left: 3px; } |
