| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- configuration {
- display-drun: "run";
- display-combi: "combi";
- show-icons: true;
- font: "Monaco for Powerline 12";
- }
- * {
- purple: #000000;
- black: #000000;
- red: #eb6e67;
- green: #95ee8f;
- yellow: #f8c456;
- blue: #35BF5C;
- mangenta: #d886f3;
- cyan: #6cdcf7;
- emphasis: #206255;
- text: #dfdfdf;
- text-alt: #b2b2b2;
- fg: #abb2bf;
- bg: #282c34;
- spacing: 0;
- background-color: transparent;
- font: "Knack Nerd Font 14";
- text-color: @text;
- }
- window {
- transparency: "real";
- background-color: #282c34dd;
- }
- mainbox {
- padding: 25px;
- border-radius: 12px;
- }
- inputbar {
- margin: 0px 0px 20px 0px;
- children: [prompt, textbox-prompt-colon, entry, case-indicator];
- }
- prompt {
- text-color: @green;
- }
- textbox-prompt-colon {
- expand: false;
- str: ":";
- text-color: @text-alt;
- }
- entry {
- margin: 0px 10px;
- text-color: @text-alt;
- }
- listview {
- spacing: 5px;
- dynamic: true;
- scrollbar: false;
- }
- element.normal.normal {
- text-color: @text-alt;
- background-color: @bg;
- }
- element.alternate.normal {
- text-color: @text-alt;
- background-color: @bg;
- }
- element.selected.normal {
- text-color: @text-alt;
- background-color: @emphasis;
- }
- element {
- padding: 5px;
- text-color: @text-alt;
- highlight: bold #95ee8f; /* green */
- border-radius: 3px;
- }
- element selected {
- background-color: @emphasis;
- text-color: @text;
- }
- element urgent, element selected urgent {
- text-color: @red;
- }
- element active, element selected active {
- text-color: @purple;
- }
- message {
- padding: 5px;
- border-radius: 3px;
- background-color: @emphasis;
- border: 1px;
- border-color: @cyan;
- }
- button selected {
- padding: 5px;
- border-radius: 3px;
- background-color: @emphasis;
- }
|