diff options
Diffstat (limited to 'rofi/shape.rasi')
| -rw-r--r-- | rofi/shape.rasi | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/rofi/shape.rasi b/rofi/shape.rasi new file mode 100644 index 0000000..fc29da5 --- /dev/null +++ b/rofi/shape.rasi @@ -0,0 +1,97 @@ +/* Original author: Newman Sanchez (https://github.com/newmanls) */ +/* The theme is no longer rounded */ +* { + font: "Fira Code Bold 11"; + + background-color: transparent; + text-color: @fg0; + + margin: 0px; + padding: 0px; + spacing: 0px; +} + +window { + location: north; + y-offset: calc(50% - 176px); + width: 510; + border-radius: 0px; + + background-color: @bg0; +} + +mainbox { + padding: 12px; +} + +inputbar { + background-color: @bg1; + border-color: @bg2; + + border: 2px; + border-radius: 0px; + + padding: 8px 16px; + spacing: 8px; + children: [ prompt, entry ]; +} + +prompt { + text-color: @fg2; +} + +entry { + placeholder: "Search"; + placeholder-color: @fg3; + text-color: @fg0; +} + +message { + margin: 12px 0 0; + border-radius: 0px; + border-color: @bg2; + background-color: @bg2; +} + +textbox { + padding: 8px 24px; +} + +listview { + background-color: transparent; + + margin: 12px 0 0; + lines: 8; + columns: 1; + + fixed-height: false; +} + +element { + padding: 8px 16px; + spacing: 8px; + border-radius: 0px; + background-color: transparent; +} + +element normal active { + text-color: @fg0; +} + +element alternate active { + text-color: @fg0; +} + +element selected normal, element selected active { + background-color: @bg3; + text-color: @fg0; +} + +element-icon { + size: 1em; + vertical-align: 0.5; +} + +element-text { + text-color: inherit; +} |
