2018-02-04 22:27:55 +01:00
|
|
|
/*******************************************************************************
|
|
|
|
* ROFI Color theme
|
|
|
|
* User: deadguy
|
|
|
|
* Copyright: deadguy
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
* {
|
|
|
|
background-color: #080808;
|
|
|
|
text-color: #d3d7cf;
|
|
|
|
selbg: #215d9c;
|
|
|
|
actbg: #262626;
|
|
|
|
urgbg: #e53935;
|
|
|
|
winbg: #26c6da;
|
|
|
|
|
|
|
|
selected-normal-foreground: @winbg;
|
|
|
|
normal-foreground: @text-color;
|
|
|
|
selected-normal-background: @actbg;
|
|
|
|
normal-background: @background-color;
|
|
|
|
|
|
|
|
selected-urgent-foreground: @background-color;
|
|
|
|
urgent-foreground: @text-color;
|
|
|
|
selected-urgent-background: @urgbg;
|
|
|
|
urgent-background: @background-color;
|
|
|
|
|
|
|
|
selected-active-foreground: @winbg;
|
|
|
|
active-foreground: @text-color;
|
|
|
|
selected-active-background: @actbg;
|
|
|
|
active-background: @selbg;
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
window {
|
2018-02-04 22:27:55 +01:00
|
|
|
location: west;
|
|
|
|
anchor: west;
|
|
|
|
height: 100%;
|
|
|
|
width: 22%;
|
|
|
|
orientation: horizontal;
|
|
|
|
children: [mainbox];
|
|
|
|
}
|
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
mainbox {
|
2018-02-04 22:27:55 +01:00
|
|
|
spacing: 0.8em;
|
|
|
|
children: [ entry,listview,sidebar ];
|
|
|
|
}
|
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
button { padding: 5px 2px; }
|
2018-02-04 22:27:55 +01:00
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
button selected {
|
2018-02-04 22:27:55 +01:00
|
|
|
background-color: @active-background;
|
|
|
|
text-color: @background-color;
|
|
|
|
}
|
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
inputbar {
|
2018-02-04 22:27:55 +01:00
|
|
|
padding: 5px;
|
|
|
|
spacing: 5px;
|
|
|
|
}
|
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
listview {
|
2018-02-04 22:27:55 +01:00
|
|
|
spacing: 0.5em;
|
|
|
|
dynamic: false;
|
|
|
|
cycle: true;
|
|
|
|
}
|
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
element { padding: 10px; }
|
2018-02-04 22:27:55 +01:00
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
entry {
|
2018-02-04 22:27:55 +01:00
|
|
|
expand: false;
|
|
|
|
text-color: @normal-foreground;
|
|
|
|
vertical-align: 1;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
element normal.normal {
|
2018-02-04 22:27:55 +01:00
|
|
|
background-color: @normal-background;
|
|
|
|
text-color: @normal-foreground;
|
|
|
|
}
|
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
element normal.urgent {
|
2018-02-04 22:27:55 +01:00
|
|
|
background-color: @urgent-background;
|
|
|
|
text-color: @urgent-foreground;
|
|
|
|
}
|
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
element normal.active {
|
2018-02-04 22:27:55 +01:00
|
|
|
background-color: @active-background;
|
|
|
|
text-color: @active-foreground;
|
|
|
|
}
|
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
element selected.normal {
|
2018-02-04 22:27:55 +01:00
|
|
|
background-color: @selected-normal-background;
|
|
|
|
text-color: @selected-normal-foreground;
|
|
|
|
border: 0 5px solid 0 0;
|
|
|
|
border-color: @active-background;
|
|
|
|
}
|
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
element selected.urgent {
|
2018-02-04 22:27:55 +01:00
|
|
|
background-color: @selected-urgent-background;
|
|
|
|
text-color: @selected-urgent-foreground;
|
|
|
|
}
|
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
element selected.active {
|
2018-02-04 22:27:55 +01:00
|
|
|
background-color: @selected-active-background;
|
|
|
|
text-color: @selected-active-foreground;
|
|
|
|
}
|
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
element alternate.normal {
|
2018-02-04 22:27:55 +01:00
|
|
|
background-color: @normal-background;
|
|
|
|
text-color: @normal-foreground;
|
|
|
|
}
|
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
element alternate.urgent {
|
2018-02-04 22:27:55 +01:00
|
|
|
background-color: @urgent-background;
|
|
|
|
text-color: @urgent-foreground;
|
|
|
|
}
|
|
|
|
|
2018-02-14 09:09:55 +01:00
|
|
|
element alternate.active {
|
2018-02-04 22:27:55 +01:00
|
|
|
background-color: @active-background;
|
|
|
|
text-color: @active-foreground;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim:ft=css */
|