aboutsummaryrefslogtreecommitdiff
path: root/rofi/.config/rofi/arthur.rasi
diff options
context:
space:
mode:
Diffstat (limited to 'rofi/.config/rofi/arthur.rasi')
-rw-r--r--rofi/.config/rofi/arthur.rasi181
1 files changed, 181 insertions, 0 deletions
diff --git a/rofi/.config/rofi/arthur.rasi b/rofi/.config/rofi/arthur.rasi
new file mode 100644
index 0000000..4f4960e
--- /dev/null
+++ b/rofi/.config/rofi/arthur.rasi
@@ -0,0 +1,181 @@
+/**
+ * ROFI Color theme
+ * User: Qball
+ * Copyright: Dave Davenport
+ */
+
+* {
+ background: #2e3440;
+ foreground: #ffeedd;
+ backlight: #ccffeedd;
+ background-color: transparent;
+ dark: #1c1c1c;
+ // Black
+ black: #3d352a;
+ lightblack: #554444;
+ tlightblack: #554444cc;
+ //
+ // Red
+ red: #cd5c5c;
+ lightred: #cc5533;
+ //
+ // Green
+ green: #86af80;
+ lightgreen: #88cc22;
+ //
+ // Yellow
+ yellow: #e8ae5b;
+ lightyellow: #ffa75d;
+ //
+ // Blue
+ blue: #6495ed;
+ lightblue: #87ceeb;
+ //
+ // Magenta
+ magenta: #deb887;
+ lightmagenta: #996600;
+ //
+ // Cyan
+ cyan: #b0c4de;
+ tcyan: #ccb0c4de;
+ lightcyan: #b0c4de;
+ //
+ // White
+ white: #bbaa99;
+ lightwhite: #ddccbb;
+ //
+ // Bold, Italic, Underline
+ highlight: underline bold #ffffff;
+
+ transparent: rgba(0,0,0,0);
+ font: "Mono 10";
+}
+window {
+ location: center;
+ anchor: center;
+ transparency: "screenshot";
+ //padding: 0;
+ //border: 0px;
+ //border-radius: 0px;
+ color: @magenta;
+ background-color: @transparent;
+ spacing: 0px;
+ children: [mode-switcher, mainbox ];
+ orientation: horizontal;
+}
+mainbox {
+ spacing: 0;
+ children: [ inputbar, message, listview ];
+}
+message {
+ border-color: @foreground;
+ border: 2px 2px 2px 2px;
+ border-radius: 10px;
+ padding: 5;
+ background-color: @tcyan;
+}
+message {
+ font: "Source Code Pro 8";
+ color: @black;
+}
+inputbar {
+ color: @lightwhite;
+ padding: 11px;
+ background-color: @background;
+ border: 2px 2px 0px 0px;
+ border-radius: 0px 15px 0px 0px;
+ border-color: @foreground;
+}
+entry,prompt,case-indicator {
+ text-font: inherit;
+ text-color:inherit;
+}
+prompt {
+ margin: 0px 0.3em 0em 0em ;
+}
+listview {
+ padding: 8px;
+ border-color: @foreground;
+ border: 0px 2px 2px 0px;
+ background-color: @background;
+ dynamic: false;
+ lines: 10;
+ border-radius: 0px 0px 15px 0px;
+}
+element {
+ padding: 3px;
+ vertical-align: 0.5;
+// border: 2px;
+ border-radius: 4px;
+ background-color: transparent;
+ color: @foreground;
+ font:inherit;
+}
+element-text {
+ background-color: inherit;
+ text-color: inherit;
+}
+element selected.normal {
+ background-color: @blue;
+}
+element normal active {
+ foreground: @lightblue;
+}
+element normal urgent {
+ foreground: @lightred;
+}
+element alternate normal {
+}
+element alternate active {
+ foreground: @lightblue;
+}
+element alternate urgent {
+ foreground: @lightred;
+}
+element selected active {
+ background-color: @lightblue;
+ foreground: @dark;
+}
+element selected urgent {
+ background-color: @lightred;
+ foreground: @dark;
+}
+element normal normal {
+
+}
+vertb {
+ expand: false;
+ children: [ dummy0, mode-switcher, dummy1 ];
+}
+dummy0, dummy1 {
+ expand: true;
+}
+mode-switcher {
+ expand: false;
+ orientation: vertical;
+ spacing: 0px;
+ border: 2px 2px 2px 2px;
+ border-radius: 50px 0px 0px 50px;
+ border-color: @foreground;
+ background-color: black;
+ width: 10ch;
+}
+button {
+ background-color: @background;
+ color: @white;
+ horizontal-align: 0.5;
+}
+button selected normal {
+ padding:6px;
+ color: @foreground;
+ //border: 1px 1px 1px 1px;
+ background-color: @green;
+ //border-color: @foreground;
+}
+error-message {
+ expand: true;
+ background-color: red;
+ border-color: darkred;
+ border: 2px;
+ padding: 1em;
+}