Renamed bg with fg at appropriate places. Also added some color variables.
This commit is contained in:
parent
67e8664eb7
commit
c8b2f71700
1 changed files with 12 additions and 10 deletions
|
@ -5,40 +5,42 @@
|
||||||
Change the values in the first block of variables(below) before...
|
Change the values in the first block of variables(below) before...
|
||||||
...individually changing values in the components.
|
...individually changing values in the components.
|
||||||
|
|
||||||
'lightbg' changes the border color and the text color.
|
'lightfg' changes the border color and the text color.
|
||||||
'background-color' changes the background color of the floating box.
|
'background-color' changes the background color of the floating box.
|
||||||
'selected-normal-background' changes the text-color of the focused item.
|
'selected-normal-background' changes the text-color of the focused item.
|
||||||
|
'lightbg' changes the highlight color of the list items.
|
||||||
**/
|
**/
|
||||||
* {
|
* {
|
||||||
red: rgba ( 220, 50, 47, 100 % );
|
red: rgba ( 220, 50, 47, 100 % );
|
||||||
selected-active-foreground: var(background);
|
selected-active-foreground: var(blackText);
|
||||||
lightfg: rgba ( 176, 215, 255, 100 % );
|
lightfg: rgba ( 45, 49, 66, 100 % );
|
||||||
separatorcolor: var(foreground);
|
separatorcolor: var(foreground);
|
||||||
urgent-foreground: var(red);
|
urgent-foreground: var(red);
|
||||||
alternate-urgent-background: var(lightbg);
|
alternate-urgent-background: var(lightbg);
|
||||||
lightbg: rgba ( 176, 215, 255, 100 % );
|
lightbg: rgba ( 176, 215, 255, 100 % );
|
||||||
spacing: 2;
|
spacing: 2;
|
||||||
border-color: var(lightbg);
|
border-color: var(lightfg);
|
||||||
normal-background: var(background);
|
normal-background: var(background);
|
||||||
background-color: rgba ( 255, 255, 255, 100 % );
|
background-color: rgba ( 255, 255, 255, 100 % );
|
||||||
alternate-active-background: var(lightbg);
|
alternate-active-background: var(darkerBlue);
|
||||||
active-foreground: var(blue);
|
active-foreground: var(lightfg);
|
||||||
blue: rgba ( 173, 172, 181, 100 % );
|
blue: rgba ( 173, 172, 181, 100 % );
|
||||||
urgent-background: var(background);
|
urgent-background: var(background);
|
||||||
alternate-normal-foreground: var(foreground);
|
alternate-normal-foreground: var(foreground);
|
||||||
selected-active-background: var(blue);
|
selected-active-background: var(darkerBlue);
|
||||||
background: rgba ( 0, 0, 0, 0% );
|
background: rgba ( 0, 0, 0, 0% );
|
||||||
selected-normal-foreground: var(lightbg);
|
selected-normal-foreground: var(lightfg);
|
||||||
active-background: var(background);
|
active-background: var(background);
|
||||||
alternate-active-foreground: var(blue);
|
alternate-active-foreground: var(blackText);
|
||||||
alternate-normal-background: var(background);
|
alternate-normal-background: var(background);
|
||||||
foreground: rgba ( 45, 49, 66, 100 % );
|
foreground: rgba ( 45, 49, 66, 100 % );
|
||||||
selected-urgent-background: var(red);
|
selected-urgent-background: var(red);
|
||||||
selected-urgent-foreground: var(background);
|
selected-urgent-foreground: var(background);
|
||||||
normal-foreground: var(foreground);
|
normal-foreground: var(foreground);
|
||||||
alternate-urgent-foreground: var(red);
|
alternate-urgent-foreground: var(red);
|
||||||
selected-normal-background: var(lightfg);
|
selected-normal-background: var(lightbg);
|
||||||
font: "DejaVu Sans 12";
|
font: "DejaVu Sans 12";
|
||||||
|
blackText: rgba(0, 0, 0, 100 %);
|
||||||
}
|
}
|
||||||
window {
|
window {
|
||||||
padding: 5;
|
padding: 5;
|
||||||
|
|
Loading…
Reference in a new issue