2020-04-29 15:58:14 +00:00
|
|
|
* {{
|
2020-05-01 13:32:25 +00:00
|
|
|
/* The color configuration */
|
|
|
|
/* Useful for quick editing in case for compiled templates */
|
|
|
|
background: {background};
|
|
|
|
foreground: {foreground};
|
|
|
|
color0: {color0};
|
|
|
|
color1: {color1};
|
|
|
|
color2: {color2};
|
|
|
|
color3: {color3};
|
|
|
|
color4: {color4};
|
|
|
|
color5: {color5};
|
|
|
|
color6: {color6};
|
|
|
|
color7: {color7};
|
|
|
|
color8: {color8};
|
|
|
|
color9: {color9};
|
|
|
|
color10: {color10};
|
|
|
|
color11: {color11};
|
|
|
|
color12: {color12};
|
|
|
|
color13: {color13};
|
|
|
|
color14: {color14};
|
|
|
|
color15: {color15};
|
|
|
|
|
|
|
|
/* General theme settings */
|
2020-04-29 15:58:14 +00:00
|
|
|
highlight: bold italic;
|
|
|
|
scrollbar: true;
|
|
|
|
|
2020-05-01 13:32:25 +00:00
|
|
|
/* Font settings */
|
|
|
|
text-color: @foreground;
|
|
|
|
background-color: @background;
|
2020-04-29 15:58:14 +00:00
|
|
|
font: "Font Awesome 5 Free,Font Awesome 5 Free Solid:style=Solid 14";
|
|
|
|
font: "Iosevka 14";
|
2020-05-01 13:32:25 +00:00
|
|
|
|
2020-04-29 15:58:14 +00:00
|
|
|
}}
|
|
|
|
|
|
|
|
window {{
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
|
|
height: 65%;
|
|
|
|
width: 35%;
|
|
|
|
position: southwest;
|
|
|
|
location: southwest;
|
2020-05-01 13:32:25 +00:00
|
|
|
text-color: @foreground;
|
2020-04-29 15:58:14 +00:00
|
|
|
}}
|
|
|
|
|
|
|
|
mainbox {{
|
2020-05-01 13:32:25 +00:00
|
|
|
background-color: @background;
|
2020-04-29 15:58:14 +00:00
|
|
|
border: 2;
|
2020-05-01 13:32:25 +00:00
|
|
|
border-color: @color6;
|
2020-04-29 15:58:14 +00:00
|
|
|
children: [ inputbar, listview, mode-switcher ];
|
|
|
|
padding: 0.5em;
|
|
|
|
}}
|
|
|
|
|
|
|
|
inputbar,
|
|
|
|
listview {{
|
2020-05-01 13:32:25 +00:00
|
|
|
background: @background;
|
2020-04-29 15:58:14 +00:00
|
|
|
margin: 0 0 0.5em 0;
|
|
|
|
}}
|
|
|
|
|
|
|
|
inputbar {{
|
|
|
|
orientation: vertical;
|
|
|
|
children: [ prompt, entry ];
|
|
|
|
}}
|
|
|
|
|
|
|
|
prompt {{
|
|
|
|
text-style: underline;
|
2020-05-01 13:32:25 +00:00
|
|
|
width: 100%;
|
2020-04-29 15:58:14 +00:00
|
|
|
}}
|
|
|
|
|
|
|
|
entry {{
|
2020-05-01 13:32:25 +00:00
|
|
|
background-color: @color0;
|
2020-04-29 15:58:14 +00:00
|
|
|
margin: 0 1em 0 0;
|
|
|
|
}}
|
|
|
|
|
|
|
|
element {{
|
2020-05-01 13:32:25 +00:00
|
|
|
background-color: @color0;
|
2020-04-29 15:58:14 +00:00
|
|
|
padding: 5;
|
|
|
|
}}
|
|
|
|
|
|
|
|
element selected.normal {{
|
2020-05-01 13:32:25 +00:00
|
|
|
background-color: @color6;
|
|
|
|
text-color: @background;
|
2020-04-29 15:58:14 +00:00
|
|
|
}}
|
|
|
|
|
|
|
|
scrollbar {{
|
2020-05-01 13:32:25 +00:00
|
|
|
background-color: @color0;
|
|
|
|
border-radius: 30%;
|
|
|
|
handle-color: @color6;
|
2020-04-29 15:58:14 +00:00
|
|
|
handle-width: 15px;
|
|
|
|
height: 100%;
|
2020-05-01 13:32:25 +00:00
|
|
|
text-color: @background;
|
|
|
|
width: 10px;
|
2020-04-29 15:58:14 +00:00
|
|
|
}}
|
|
|
|
|
|
|
|
listview {{
|
|
|
|
cyclic: true;
|
|
|
|
spacing: 0.6em;
|
|
|
|
}}
|
|
|
|
|
|
|
|
element, button {{
|
|
|
|
border-radius: 30%;
|
|
|
|
}}
|
|
|
|
|
|
|
|
button,
|
|
|
|
case-indicator,
|
2020-05-01 13:32:25 +00:00
|
|
|
entry,
|
|
|
|
inputbar {{
|
2020-04-29 15:58:14 +00:00
|
|
|
padding: 5;
|
|
|
|
}}
|
|
|
|
|
|
|
|
sidebar {{
|
|
|
|
padding: 5;
|
|
|
|
margin: 5;
|
|
|
|
}}
|
|
|
|
|
|
|
|
button {{
|
|
|
|
margin: 0.25em;
|
|
|
|
}}
|
|
|
|
|
|
|
|
button.selected {{
|
2020-05-01 13:32:25 +00:00
|
|
|
background-color: @color6;
|
|
|
|
text-color: @background;
|
2020-04-29 15:58:14 +00:00
|
|
|
}}
|