summaryrefslogtreecommitdiff
path: root/.config/rofi/rofi.rasi
diff options
context:
space:
mode:
authorAdam Stück <adam.moloney.stuck@gmail.com>2021-08-02 20:12:45 +0200
committerAdam Stück <adam.moloney.stuck@gmail.com>2021-08-02 20:12:45 +0200
commit7668d80c1a63267c7e6da080d215f233ba164b33 (patch)
tree88246cdb5059fb42eaf9d3ad5b08bd0d1095ccb6 /.config/rofi/rofi.rasi
parent16e3a59ec6c364d9bec72a852c3719958c89d5f2 (diff)
added rofi.rasi
Diffstat (limited to '.config/rofi/rofi.rasi')
-rw-r--r--.config/rofi/rofi.rasi104
1 files changed, 104 insertions, 0 deletions
diff --git a/.config/rofi/rofi.rasi b/.config/rofi/rofi.rasi
new file mode 100644
index 0000000..6168c61
--- /dev/null
+++ b/.config/rofi/rofi.rasi
@@ -0,0 +1,104 @@
+/*
+ * ROFI One Dark
+ *
+ * Based on OneDark.vim (https://github.com/joshdick/onedark.vim)
+ *
+ * Author: Benjamin Stauss
+ * User: me-benni
+ *
+ */
+
+
+* {
+ black: #000000;
+ red: #eb6e67;
+ green: #95ee8f;
+ yellow: #f8c456;
+ blue: #6eaafb;
+ mangenta: #d886f3;
+ cyan: #6cdcf7;
+ emphasis: #50536b;
+ text: #dfdfdf;
+ text-alt: #b2b2b2;
+ fg: #abb2bf;
+ bg: #282c34;
+
+ spacing: 0;
+ background-color: transparent;
+
+ font: "SFNS Display 18";
+ text-color: @text;
+}
+
+window {
+ transparency: "real";
+ fullscreen: true;
+ background-color: #282c34dd;
+}
+
+mainbox {
+ padding: 30% 30%;
+}
+
+inputbar {
+ margin: 0px 0px 20px 0px;
+ children: [prompt, textbox-prompt-colon, entry, case-indicator];
+}
+
+prompt {
+ text-color: @blue;
+ //font: "SFNS Display Bold 18";
+}
+
+textbox-prompt-colon {
+ expand: false;
+ str: ":";
+ text-color: @text-alt;
+}
+
+entry {
+ margin: 0px 10px;
+}
+
+listview {
+ spacing: 5px;
+ dynamic: true;
+ scrollbar: false;
+}
+
+element {
+ padding: 5px;
+ text-color: @text-alt;
+ border-radius: 3px;
+}
+
+element-text {
+ highlight: bold #95ee8f;
+}
+
+element selected {
+ background-color: @emphasis;
+ text-color: @text;
+}
+
+element urgent, element selected urgent {
+ text-color: @red;
+}
+
+element active, element selected active {
+ text-color: @purple;
+}
+
+message {
+ padding: 5px;
+ border-radius: 3px;
+ background-color: @emphasis;
+ border: 1px;
+ border-color: @cyan;
+}
+
+button selected {
+ padding: 5px;
+ border-radius: 3px;
+ background-color: @emphasis;
+}