mirror of
https://github.com/He4eT/dotfiles.git
synced 2026-05-04 15:37:22 +00:00
47 lines
727 B
Text
47 lines
727 B
Text
* {
|
|
bg: #222222;
|
|
fg: #cdcdcd;
|
|
selection: #444444;
|
|
|
|
inner-padding: 0.5em;
|
|
border-width: 2px;
|
|
|
|
border-color: @selection;
|
|
background-color: @bg;
|
|
text-color: @fg;
|
|
}
|
|
|
|
element-text {
|
|
background-color: inherit;
|
|
text-color: inherit;
|
|
highlight: bold;
|
|
}
|
|
|
|
#window {
|
|
border: @border-width;
|
|
width: 800px;
|
|
height: 518px;
|
|
}
|
|
|
|
#element {
|
|
padding: @inner-padding;
|
|
highlight: bold;
|
|
}
|
|
|
|
#element selected.normal {
|
|
background-color: @selection;
|
|
}
|
|
|
|
#element selected.active {
|
|
background-color: @selection;
|
|
}
|
|
|
|
#inputbar {
|
|
padding: @inner-padding;
|
|
children: [ prompt, textbox-prompt-colon, entry, case-indicator ];
|
|
}
|
|
|
|
textbox-prompt-colon {
|
|
expand: false;
|
|
str: ": ";
|
|
}
|