diff --git a/dot_config/wofi/config b/dot_config/wofi/config new file mode 100644 index 0000000..ed34beb --- /dev/null +++ b/dot_config/wofi/config @@ -0,0 +1,2 @@ +insensitive=true +allow_markup=true diff --git a/dot_config/wofi/style.css b/dot_config/wofi/style.css new file mode 100644 index 0000000..eed7dde --- /dev/null +++ b/dot_config/wofi/style.css @@ -0,0 +1,49 @@ +* { + font-family: "Hack", monospace; +} + +window { + background-color: #fbf1c7; +} + +#input { + margin: 5px; + border: none; + background-color: #fbf1c7; + color: #3c3836; +} + +#inner-box { + margin: 5px + border: none + background-color: #fbf1c7; +} + +#outer-box { + margin: 2px; + padding: 2px; + background-color: #7c6f64; +} + +#scroll { + color: #7c6f64; +} + +#entry:nth-child(odd){ + background-color: #fbf1c7; + color: #3c3836; +} + +#entry:nth-child(even){ + background-color: #f2e5bc; + color: #3c3836; +} + +#entry:selected { + background-color: #d79921; + color: #fbf1c7; +} + +#text:selected { + background: transparent; +}