summaryrefslogtreecommitdiff
path: root/.config/rofi/themes/squared-everforest.rasi
diff options
context:
space:
mode:
authorThanosApollo <[email protected]>2022-10-26 21:52:11 +0300
committerThanosApollo <[email protected]>2022-10-26 21:52:11 +0300
commit1d14d2ac6e1a37184be0eaef4addeb00ee7e4f37 (patch)
tree9aaa9cf0e20e2de170a3c63fa31873e74b0d5dbe /.config/rofi/themes/squared-everforest.rasi
parentfde632d972b630fed4196335cc40fc1cea0b0f16 (diff)
Redo rofi themes
Diffstat (limited to '.config/rofi/themes/squared-everforest.rasi')
-rw-r--r--.config/rofi/themes/squared-everforest.rasi96
1 files changed, 96 insertions, 0 deletions
diff --git a/.config/rofi/themes/squared-everforest.rasi b/.config/rofi/themes/squared-everforest.rasi
new file mode 100644
index 0000000..065966c
--- /dev/null
+++ b/.config/rofi/themes/squared-everforest.rasi
@@ -0,0 +1,96 @@
+/*******************************************************************************
+ * ROFI SQUARED THEME USING THE EVERFOREST PALETTE
+ * User : LR-Tech
+ * Theme Repo : https://github.com/lr-tech/rofi-themes-collection
+ *******************************************************************************/
+
+* {
+ font: "FiraCode Nerd Font Medium 12";
+
+ bg0: #2B3339;
+ bg1: #323D43;
+ fg0: #D3C6AA;
+
+ accent-color: #A7C080;
+ urgent-color: #DBBC7F;
+
+ background-color: transparent;
+ text-color: @fg0;
+
+ margin: 0;
+ padding: 0;
+ spacing: 0;
+}
+
+window {
+ location: center;
+ width: 480;
+ y-offset: -160;
+
+ background-color: @bg0;
+}
+
+inputbar {
+ spacing: 8px;
+ padding: 8px;
+
+ background-color: @bg1;
+}
+
+prompt, entry, element-icon, element-text {
+ vertical-align: 0.5;
+}
+
+prompt {
+ text-color: @accent-color;
+}
+
+textbox {
+ padding: 8px;
+ background-color: @bg1;
+}
+
+listview {
+ padding: 4px 0;
+ lines: 8;
+ columns: 1;
+
+ fixed-height: false;
+}
+
+element {
+ padding: 8px;
+ spacing: 8px;
+}
+
+element normal normal {
+ text-color: @fg0;
+}
+
+element normal urgent {
+ text-color: @urgent-color;
+}
+
+element normal active {
+ text-color: @accent-color;
+}
+
+element selected {
+ text-color: @bg0;
+}
+
+element selected normal, element selected active {
+ background-color: @accent-color;
+}
+
+element selected urgent {
+ background-color: @urgent-color;
+}
+
+element-icon {
+ size: 0.8em;
+}
+
+element-text {
+ text-color: inherit;
+}