diff options
author | ThanosApollo <[email protected]> | 2022-10-26 21:52:11 +0300 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-10-26 21:52:11 +0300 |
commit | 1d14d2ac6e1a37184be0eaef4addeb00ee7e4f37 (patch) | |
tree | 9aaa9cf0e20e2de170a3c63fa31873e74b0d5dbe /.config/rofi/themes/spotlight-dark.rasi | |
parent | fde632d972b630fed4196335cc40fc1cea0b0f16 (diff) |
Redo rofi themes
Diffstat (limited to '.config/rofi/themes/spotlight-dark.rasi')
-rw-r--r-- | .config/rofi/themes/spotlight-dark.rasi | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/.config/rofi/themes/spotlight-dark.rasi b/.config/rofi/themes/spotlight-dark.rasi new file mode 100644 index 0000000..2e68c69 --- /dev/null +++ b/.config/rofi/themes/spotlight-dark.rasi @@ -0,0 +1,99 @@ +/******************************************************************************* + * MACOS SPOTLIGHT LIKE DARK THEME FOR ROFI + * User : LR-Tech + * Theme Repo : https://github.com/lr-tech/rofi-themes-collection + *******************************************************************************/ + +* { + font: "Montserrat 12"; + + bg0: #242424E6; + bg1: #7E7E7E80; + bg2: #0860f2E6; + + fg0: #DEDEDE; + fg1: #FFFFFF; + fg2: #DEDEDE80; + + background-color: transparent; + text-color: @fg0; + + margin: 0; + padding: 0; + spacing: 0; +} + +window { + background-color: @bg0; + + location: center; + width: 640; + y-offset: -200; + border-radius: 8; +} + +inputbar { + font: "Montserrat 20"; + padding: 12px; + spacing: 12px; + children: [ icon-search, entry ]; +} + +icon-search { + expand: false; + filename: "search"; + size: 28px; +} + +icon-search, entry, element-icon, element-text { + vertical-align: 0.5; +} + +entry { + font: inherit; + + placeholder : "Search"; + placeholder-color : @fg2; +} + +message { + border: 2px 0 0; + border-color: @bg1; + background-color: @bg1; +} + +textbox { + padding: 8px 24px; +} + +listview { + lines: 10; + columns: 1; + + fixed-height: false; + border: 1px 0 0; + border-color: @bg1; +} + +element { + padding: 8px 16px; + spacing: 16px; + background-color: transparent; +} + +element normal active { + text-color: @bg2; +} + +element selected normal, element selected active { + background-color: @bg2; + text-color: @fg1; +} + +element-icon { + size: 1em; +} + +element-text { + text-color: inherit; +} |