1

Update rofi theme

This commit is contained in:
2023-04-23 16:00:46 +02:00
parent a42cd9e768
commit 52e01f9c47
3 changed files with 65 additions and 108 deletions

View File

@ -1,37 +0,0 @@
* {
background: #1E1E2E;
background-alt: #1E1E2E;
foreground: #CDD6F4;
selected: #61afef;
highlight: #DF6B74;
urgent: #e06c75;
on: #98c379;
off: #e06c75;
black: #585B70;
black-darker: #45475A;
red: #F38BA8;
red-darker: #F38BA8;
green: #A6E3A1;
green-darker: #A6E3A1;
yellow: #F9E2AF;
yellow-darker: #F9E2AF;
blue: #89B4FA;
blue-darker: #89B4FA;
magenta: #F5C2E7;
magenta-darker: #F5C2E7;
cyan: #94E2D5;
cyan-darker: #94E2D5;
white: #BAC2DE;
white-darker: #BAC2DE;
element-background-color: #38384d;
window-background-color: #1e2127;
}

View File

@ -0,0 +1,16 @@
* {
dark: #2A231C;
light: #EBEBE5;
accent-dark: #463A2E;
accent-light: #865E43;
pastel-a: #797D62;
pastel-b: #9B9B7A;
pastel-c: #D9AE94;
pastel-d: #E5C59E;
pastel-e: #F1DCA7;
pastel-f: #F8D488;
pastel-g: #E4B074;
pastel-h: #D08C60;
pastel-i: #997B66;
}

View File

@ -1,103 +1,81 @@
configuration{ configuration{
modi: "run,drun"; modi: "drun";
lines: 5; lines: 5;
font: "Sarasa Nerd Font 14"; font: "Jetbrains Mono 14";
show-icons: true; show-icons: true;
icon-theme: "Oranchelo"; icon-theme: "Papirus";
terminal: "st"; terminal: "kitty";
drun-display-format: "{icon} {name}"; drun-display-format: "{icon} {name}";
location: 0; location: 0;
disable-history: false; disable-history: false;
hide-scrollbar: true; hide-scrollbar: true;
display-drun: " Apps "; display-drun: " Apps ";
display-run: " Run "; display-run: " Run ";
sidebar-mode: true; sidebar-mode: false;
} }
@import "colors.rasi" @import "colors/three-bears.rasi"
element-text, element-icon , mode-switcher { element-text,
background-color: inherit; element-icon,
text-color: inherit; mode-switcher {
background-color: inherit;
text-color: inherit;
} }
window { window {
height: 360px; height: 360px;
width: 700px; width: 700px;
border: 3px; border-radius: 6px;
border-color: @black; background-color: @accent-dark;
background-color: @background;
} }
mainbox { mainbox {
background-color: @background; background-color: @accent-dark;
} }
inputbar { inputbar {
children: [prompt,entry]; children: [prompt,entry];
background-color: @background; background-color: @accent-dark;
border-radius: 5px;
padding: 2px;
} }
prompt { prompt {
background-color: @blue; background-color: @pastel-g;
padding: 6px; padding: 6px;
text-color: @background; text-color: @dark;
border-radius: 3px; border-radius: 3px;
margin: 20px 0px 0px 20px; margin: 20px 0px 0px 20px;
}
textbox-prompt-colon {
expand: false;
str: ":";
} }
entry { entry {
padding: 6px; padding: 6px;
margin: 20px 0px 0px 10px; margin: 20px 20px 0px 10px;
text-color: @foreground; text-color: @dark;
background-color: @background; background-color: @pastel-d;
border-radius: 3px;
} }
listview { listview {
border: 0px 0px 0px; border: 0px 0px 0px;
padding: 6px 0px 0px; padding: 6px 0px 0px;
margin: 10px 0px 0px 20px; margin: 10px 0px 0px 20px;
columns: 2; columns: 1;
background-color: @background; background-color: @accent-dark;
} }
element { element {
padding: 5px; padding: 5px;
background-color: @background; margin: 0px 20px 0px 0px;
text-color: @foreground ; background-color: @accent-dark;
text-color: @light;
border-radius: 3px;
} }
element-icon { element-icon {
size: 25px; size: 25px;
} }
element selected { element selected {
background-color: @selected; background-color: @light;
text-color: @background; text-color: @dark;
}
mode-switcher {
spacing: 0;
}
button {
padding: 10px;
background-color: @black-darker;
text-color: @white;
vertical-align: 0.5;
horizontal-align: 0.5;
}
button selected {
border: 1px;
border-color: @blue;
background-color: @background;
text-color: @blue;
} }