1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

rofi/theme.rasi: update

This commit is contained in:
Henrik Hautakoski 2025-05-14 22:06:12 +02:00
parent 5408296c7d
commit 5def33bc51

View file

@ -1,39 +1,37 @@
* { * {
font: "IosevkaCustom 16"; font: "IosevkaCustom 15";
bg: #0E1019; base: #0E1019;
gray: #131521; mantle: #0D0F17;
crust: #0C0D14;
surface0: #1a1c2d;
surface1: #343959;
blue: #89b4fa; blue: #89b4fa;
white: #eceef4; white: #eceef4;
yellow: #ebcb8b; yellow: #ebcb8b;
border: #343959;
background-color: transparent; background-color: transparent;
text-color: @white; text-color: @white;
accent-color: @blue; accent-color: @blue;
border-color: @surface0;
margin: 0px; margin: 0;
padding: 0px; padding: 0;
spacing: 0px; spacing: 0;
} }
window { window {
background-color: @bg; background-color: @crust;
border-color: @border; location: north;
y-offset: 20%;
location: center; width: calc( 50% max 300 min 630 );
width: 480px;
border: 1px; border: 1px;
} }
inputbar { inputbar {
padding: 8px 12px; background-color: @mantle;
spacing: 12px; padding: 0.5em;
children: [ prompt, entry ]; spacing: 0.5em;
} border: 0 0 1px 0;
prompt, entry, element-text, element-icon {
vertical-align: 0.5;
} }
prompt { prompt {
@ -41,45 +39,36 @@ prompt {
} }
listview { listview {
lines: 8; lines: 8;
columns: 1; fixed-height: false;
dynamic: true;
fixed-height: false;
} }
element { element {
padding: 4px; padding: 0.2em 0.5em;
spacing: 2px;
} }
element normal urgent { element normal.urgent {
text-color: @accent-color; text-color: @accent-color;
} }
element normal active { element normal.active {
text-color: @accent-color; text-color: @accent-color;
} }
element selected { element selected.normal {
// text-color: @bg; background-color: @surface1;
} }
element selected normal { element selected.urgent {
background-color: @border;
}
element selected urgent {
background-color: @yellow; background-color: @yellow;
} }
element selected active { element selected.active {
background-color: @accent-color; background-color: @accent-color;
} }
element-icon { element-text {
size: 0.75em; highlight: @accent-color;
} }
element-text {
text-color: inherit;
}