112 lines
1.7 KiB
Plaintext
112 lines
1.7 KiB
Plaintext
* {
|
|
darkpurple: #711c91;
|
|
purple: #ea00d9;
|
|
lightblue: #0abdc6;
|
|
blue: #133E7C;
|
|
darkblue: #091833;
|
|
green: #60ff60;
|
|
yellow: #FFFF00;
|
|
orange: #f09C02;
|
|
pink: #ffa0a0;
|
|
red: #FF0000;
|
|
}
|
|
|
|
#window {
|
|
location: center;
|
|
anchor: center;
|
|
border: 2px;
|
|
border-color: @purple;
|
|
spacing: 0;
|
|
children: [mainbox];
|
|
orientation: horizontal;
|
|
background-color: @darkblue;
|
|
}
|
|
|
|
#mainbox {
|
|
spacing: 0;
|
|
children: [ inputbar, listview ];
|
|
background-color: @darkblue;
|
|
}
|
|
|
|
#message {
|
|
border-color: @red;
|
|
border: 5px;
|
|
padding: 8;
|
|
background-color: @green;
|
|
}
|
|
|
|
#message {
|
|
color: @black;
|
|
}
|
|
|
|
#inputbar {
|
|
color: @purple;
|
|
padding: 12px;
|
|
background-color: @darkblue;
|
|
}
|
|
|
|
#entry,prompt,case-indicator {
|
|
text-font: inherit;
|
|
text-color:inherit;
|
|
background-color: inherit;
|
|
}
|
|
|
|
#entry {
|
|
color: @lightblue;
|
|
}
|
|
|
|
#prompt {
|
|
margin: 0px 0.3em 0em 0em ;
|
|
}
|
|
|
|
#listview {
|
|
padding: 0px;
|
|
border-color: @pink;
|
|
dynamic: false;
|
|
lines: 10;
|
|
background-color: @darkblue;
|
|
}
|
|
|
|
#element,element-icon,element-text {
|
|
color: inherit;
|
|
background-color: inherit;
|
|
}
|
|
|
|
#element {
|
|
padding: 5px;
|
|
margin: 0 5px;
|
|
vertical-align: 0.5;
|
|
border-color: @magenta;
|
|
color: @lightblue;
|
|
font:inherit;
|
|
}
|
|
|
|
#element selected.normal {
|
|
color: @darkblue;
|
|
background-color: @yellow;
|
|
}
|
|
|
|
#element-text {
|
|
highlight: bold #711c91;
|
|
}
|
|
|
|
#element alternate active {
|
|
foreground: @blue;
|
|
}
|
|
|
|
#element alternate urgent {
|
|
foreground: @red;
|
|
}
|
|
|
|
#element selected active {
|
|
background-color: @blue;
|
|
foreground: @lightblue;
|
|
}
|
|
|
|
#element selected urgent {
|
|
background-color: @red;
|
|
foreground: @dark;
|
|
}
|
|
|
|
|