From 1e32c10a08149c98766e102e6b366376de0179e4 Mon Sep 17 00:00:00 2001 From: Brian Zalewski Date: Sat, 3 Sep 2022 04:51:52 +0000 Subject: [PATCH] Update dotfiles/.local/share/rofi/themes/material.rasi --- .../.local/share/rofi/themes/material.rasi | 88 +++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 dotfiles/.local/share/rofi/themes/material.rasi diff --git a/dotfiles/.local/share/rofi/themes/material.rasi b/dotfiles/.local/share/rofi/themes/material.rasi new file mode 100644 index 00000000..b2c0c11b --- /dev/null +++ b/dotfiles/.local/share/rofi/themes/material.rasi @@ -0,0 +1,88 @@ +/* + * ROFI color theme + * + * Based on Something Found in the Internet + * + * User: Contributors + * Copyright: *! + */ + +configuration { + font: "JetBrainsMono Nerd Font Medium 10"; + + drun { + display-name: ""; + } + + run { + display-name: ""; + } + + window { + display-name: ""; + } + + timeout { + delay: 10; + action: "kb-cancel"; + } +} + +* { + border: 0; + margin: 0; + padding: 0; + spacing: 0; + + bg: #151515; + bg-alt: #232323; + fg: #FFFFFF; + fg-alt: #424242; + + background-color: @bg; + text-color: @fg; +} + +window { + transparency: "real"; +} + +mainbox { + children: [inputbar, listview]; +} + +inputbar { + background-color: @bg-alt; + children: [prompt, entry]; +} + +entry { + background-color: inherit; + padding: 12px 3px; +} + +prompt { + background-color: inherit; + padding: 12px; +} + +listview { + lines: 8; +} + +element { + children: [element-icon, element-text]; +} + +element-icon { + padding: 10px 10px; +} + +element-text { + padding: 10px 0; + text-color: @fg-alt; +} + +element-text selected { + text-color: @fg; +}