first commit

This commit is contained in:
Zastian Pretorius
2021-12-08 19:57:06 +02:00
commit 3f96d7a788
821 changed files with 25657 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
/**
* This theme is intended for a 8x2 items list menu with a headerbar.
*/
@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;
background-color: @accent;
text-color: @background;
}
#textbox-prompt-colon {
expand: false;
str: " : : ";
padding: @apps-textbox-prompt-colon-padding;
}
#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;
}