From 0a8b6af94820d4f73974345c8fa683f18527c76c Mon Sep 17 00:00:00 2001 From: Tanguy Date: Sun, 5 Jul 2020 00:13:17 +0200 Subject: [PATCH] Add rofi theme --- .local/share/rofi/themes/slate.rasi | 43 +++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100755 .local/share/rofi/themes/slate.rasi diff --git a/.local/share/rofi/themes/slate.rasi b/.local/share/rofi/themes/slate.rasi new file mode 100755 index 0000000..d6d29b3 --- /dev/null +++ b/.local/share/rofi/themes/slate.rasi @@ -0,0 +1,43 @@ +* { + background-color: #282C33; + border-color: #2e343f; + text-color: #8ca0aa; + spacing: 0; + width: 512px; +} + +inputbar { + border: 0 0 1px 0; + children: [prompt,entry]; +} + +prompt { + padding: 16px; + border: 0 1px 0 0; +} + +textbox { + background-color: #2e343f; + border: 0 0 1px 0; + border-color: #282C33; + padding: 8px 16px; +} + +entry { + padding: 16px; +} + +listview { + cycle: false; + margin: 0 0 -1px 0; + scrollbar: false; +} + +element { + border: 0 0 1px 0; + padding: 16px; +} + +element selected { + background-color: #2e343f; +} \ No newline at end of file