summaryrefslogtreecommitdiff
path: root/rofi/catppuccin-lavrent-mocha.rasi
diff options
context:
space:
mode:
Diffstat (limited to 'rofi/catppuccin-lavrent-mocha.rasi')
-rw-r--r--rofi/catppuccin-lavrent-mocha.rasi114
1 files changed, 114 insertions, 0 deletions
diff --git a/rofi/catppuccin-lavrent-mocha.rasi b/rofi/catppuccin-lavrent-mocha.rasi
new file mode 100644
index 0000000..7c5b99e
--- /dev/null
+++ b/rofi/catppuccin-lavrent-mocha.rasi
@@ -0,0 +1,114 @@
+/**
+ * Catppuccin Mocha theme
+ * Color palette copied from https://catppuccin.com/palette
+ * https://github.com/hiimsergey/rofi-catppuccin
+ */
+
+* {
+ base: #1e1e2e;
+ surface0: #313244;
+ overlay0: #6c7086;
+ text: #cdd6f4;
+
+ mauve: #cba6f7;
+ red: #f38ba8;
+ peach: #fab387;
+ green: #a6e3a1;
+ lavender: #b4befe;
+
+ background-color: @base;
+}
+
+window {
+ height: 600;
+ width: 600;
+
+ border: 3;
+ border-radius: 10;
+ border-color: @lavender;
+}
+
+mainbox {
+ spacing: 0;
+ children: [inputbar, message, listview];
+}
+
+inputbar {
+ color: @text;
+ padding: 14;
+ background-color: @base;
+}
+
+message {
+ padding: 10;
+ background-color: @overlay0;
+}
+
+listview {
+ padding: 8;
+ border-radius: 0 0 10 10;
+ border: 2 2 2 2;
+ border-color: @base;
+ background-color: @base;
+ dynamic: false;
+}
+
+textbox {
+ text-color: @text;
+ background-color: inherit;
+}
+
+error-message {
+ border: 20 20 20 20;
+}
+
+entry, prompt, case-indicator {
+ text-color: inherit;
+}
+
+prompt {
+ margin: 0 10 0 0;
+}
+
+element {
+ padding: 5;
+ vertical-align: 0.5;
+ border-radius: 10;
+ background-color: @surface0;
+}
+
+element.selected.normal {
+ background-color: @overlay0;
+}
+
+element.alternate.normal {
+ background-color: inherit;
+}
+
+element.normal.active, element.alternate.active {
+ background-color: @peach;
+}
+
+element.selected.active {
+ background-color: @green;
+}
+
+element.normal.urgent, element.alternate.urgent {
+ background-color: @red;
+}
+
+element.selected.urgent {
+ background-color: @mauve;
+}
+
+element-text, element-icon {
+ size: 40;
+ margin: 0 10 0 0;
+ vertical-align: 0.5;
+ background-color: inherit;
+ text-color: @text;
+}
+
+element-text .active, element-text .urgent {
+ text-color: @base;
+}