mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
85 lines
1.2 KiB
Text
85 lines
1.2 KiB
Text
* {
|
|
font: "IosevkaCustom 16";
|
|
|
|
bg: #0E1019;
|
|
gray: #131521;
|
|
blue: #89b4fa;
|
|
white: #eceef4;
|
|
yellow: #ebcb8b;
|
|
border: #343959;
|
|
|
|
background-color: transparent;
|
|
text-color: @white;
|
|
accent-color: @blue;
|
|
|
|
margin: 0px;
|
|
padding: 0px;
|
|
spacing: 0px;
|
|
}
|
|
|
|
window {
|
|
background-color: @bg;
|
|
border-color: @border;
|
|
|
|
location: center;
|
|
width: 480px;
|
|
border: 1px;
|
|
}
|
|
|
|
inputbar {
|
|
padding: 8px 12px;
|
|
spacing: 12px;
|
|
children: [ prompt, entry ];
|
|
}
|
|
|
|
prompt, entry, element-text, element-icon {
|
|
vertical-align: 0.5;
|
|
}
|
|
|
|
prompt {
|
|
text-color: @accent-color;
|
|
}
|
|
|
|
listview {
|
|
lines: 8;
|
|
columns: 1;
|
|
|
|
fixed-height: false;
|
|
}
|
|
|
|
element {
|
|
padding: 4px;
|
|
spacing: 2px;
|
|
}
|
|
|
|
element normal urgent {
|
|
text-color: @accent-color;
|
|
}
|
|
|
|
element normal active {
|
|
text-color: @accent-color;
|
|
}
|
|
|
|
element selected {
|
|
// text-color: @bg;
|
|
}
|
|
|
|
element selected normal {
|
|
background-color: @border;
|
|
}
|
|
|
|
element selected urgent {
|
|
background-color: @yellow;
|
|
}
|
|
|
|
element selected active {
|
|
background-color: @accent-color;
|
|
}
|
|
|
|
element-icon {
|
|
size: 0.75em;
|
|
}
|
|
|
|
element-text {
|
|
text-color: inherit;
|
|
}
|