62 lines
1.3 KiB
Plaintext
62 lines
1.3 KiB
Plaintext
/**
|
|
* This theme is intended for a 8 items list on a 1920x1080 pixels resolution.
|
|
* You may have to tweak values such as the window padding if you have a different resolution.
|
|
*/
|
|
@import "shared/settings.rasi"
|
|
* {
|
|
background-color: @background;
|
|
text-color: @foreground-list;
|
|
font: @text-font;
|
|
}
|
|
#window {
|
|
padding: @list-8-window-padding;
|
|
}
|
|
inputbar,
|
|
prompt,
|
|
textbox-prompt-colon,
|
|
entry {
|
|
background-color: @background-light;
|
|
}
|
|
#inputbar {
|
|
children: [ prompt, textbox-prompt-colon, entry ];
|
|
margin: @inputbar-margin;
|
|
}
|
|
#prompt {
|
|
padding: @prompt-padding;
|
|
text-color: @background;
|
|
}
|
|
#textbox-prompt-colon {
|
|
expand: false;
|
|
str: " ";
|
|
text-color: @accent;
|
|
padding: @nmvpn-textbox-prompt-colon-padding;
|
|
font: @icon-font-small;
|
|
}
|
|
#entry {
|
|
text-color: @accent;
|
|
padding: @entry-padding;
|
|
}
|
|
#element {
|
|
padding: @list-element-padding;
|
|
margin: @list-element-margin;
|
|
border: @list-element-border;
|
|
background-color: @background-light;
|
|
border-color: @background-light;
|
|
}
|
|
#element.selected {
|
|
background-color: @background-focus;
|
|
text-color: @accent;
|
|
border-color: @accent;
|
|
}
|
|
#element.active {
|
|
background-color: @on;
|
|
text-color: @background;
|
|
border-color: @on;
|
|
}
|
|
#element.selected.active {
|
|
background-color: @off;
|
|
text-color: @background;
|
|
border-color: @accent;
|
|
}
|
|
|