diff options
author | Nate Buttke <nate-web@riseup.net> | 2022-01-15 23:21:47 -0800 |
---|---|---|
committer | Nate Buttke <nate-web@riseup.net> | 2022-01-15 23:21:47 -0800 |
commit | 3281eb1d839dcff721fe6aa8fbd6033678fc4a9d (patch) | |
tree | 02de45102613357591f0d39e2858fc722670349e /wofi |
initial commit
Diffstat (limited to 'wofi')
-rw-r--r-- | wofi/.config/wofi/style.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/wofi/.config/wofi/style.css b/wofi/.config/wofi/style.css new file mode 100644 index 0000000..919d59f --- /dev/null +++ b/wofi/.config/wofi/style.css @@ -0,0 +1,40 @@ +#outer-box { + border: 2px solid #d5d8da; + border-radius: 4px; +} + +#window { + background-color: #1c1e26; +} + +#text { + font-family: "Terminus"; + color: #ccc; +} + +#text:selected { + color: #16161c; +} + +#input { + margin: 4px; + border: 2px solid #d5d8da; + border-radius: 4px; + background-color: #1c1e26; + font-family: "Terminus"; + color: #ccc; +} + +#scroll { + margin: 2px 2px 3px 2px; +} + +#entry { + padding: 2px 4px; + margin: 1px 2px; +} + +#entry:selected { + background-color: #d5d8da; + border-radius: 4px; +} |