dgy
/
hexagons
Archived
1
0
Fork 0
This repository has been archived on 2021-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
hexagons/.local/share/rofi/themes/sbarr.rasi

139 lines
3.0 KiB
Plaintext
Raw Normal View History

2018-03-15 19:26:00 +00:00
/**
* User: deadguy
* Copyright: deadguy
*/
2018-05-26 20:06:45 +00:00
2018-02-14 22:03:56 +00:00
configuration {
display-drun: "Activate";
display-run: "Execute";
display-window: "Switch";
2018-03-02 04:10:08 +00:00
show-icons: false;
sidebar-mode: true;
2018-02-14 22:03:56 +00:00
}
2018-03-15 19:26:00 +00:00
/* global settings and color variables */
* {
background-color: #080808;
2018-07-04 19:27:13 +00:00
text-color: #b6b6b6;
selbg: #c4a000;
actbg: #222222;
urgbg: #e53935;
2018-07-04 19:27:13 +00:00
winbg: #f69f3e;
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;
2018-07-04 19:27:13 +00:00
active-foreground: @actbg;
selected-active-background: @actbg;
active-background: @selbg;
2018-02-09 20:05:20 +00:00
line-margin: 2;
line-padding: 2;
separator-style: "none";
hide-scrollbar: "true";
font: "Noto Sans 10";
margin: 0;
padding: 0;
}
2018-03-15 19:26:00 +00:00
window {
2018-02-09 20:05:20 +00:00
location: east;
anchor: east;
height: 100%;
2018-05-26 20:06:45 +00:00
width: 18%;
2018-02-09 20:05:20 +00:00
orientation: horizontal;
children: [mainbox];
border: 0 0 0 1px solid;
border-color: @active-background;
margin: 0 0 0 0;
}
2018-03-15 19:26:00 +00:00
mainbox {
spacing: 0.8em;
children: [ entry,listview,mode-switcher ];
}
2018-03-15 19:26:00 +00:00
button { padding: 5px 2px; }
2018-03-15 19:26:00 +00:00
button selected {
background-color: @active-background;
text-color: @background-color;
}
2018-03-15 19:26:00 +00:00
inputbar {
padding: 5px;
spacing: 5px;
}
2018-03-15 19:26:00 +00:00
listview {
spacing: 0.5em;
dynamic: false;
cycle: true;
}
2018-03-15 19:26:00 +00:00
element { padding: 10px; }
2018-03-15 19:26:00 +00:00
entry {
2018-02-04 16:14:51 +00:00
expand: false;
text-color: @normal-foreground;
vertical-align: 1;
padding: 5px;
}
2018-03-15 19:26:00 +00:00
element.normal.normal {
background-color: @normal-background;
text-color: @normal-foreground;
}
2018-03-15 19:26:00 +00:00
element.normal.urgent {
background-color: @urgent-background;
text-color: @urgent-foreground;
}
2018-03-15 19:26:00 +00:00
element.normal.active {
background-color: @active-background;
text-color: @active-foreground;
}
2018-03-15 19:26:00 +00:00
element.selected.normal {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
border: 0 5px solid 0 0;
2018-02-09 20:05:20 +00:00
border-color: @winbg;
}
2018-03-15 19:26:00 +00:00
element.selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
2018-03-15 19:26:00 +00:00
element.selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
2018-03-15 19:26:00 +00:00
element.alternate.normal {
background-color: @normal-background;
text-color: @normal-foreground;
}
2018-03-15 19:26:00 +00:00
element.alternate.urgent {
background-color: @urgent-background;
text-color: @urgent-foreground;
}
2018-03-15 19:26:00 +00:00
element.alternate.active {
background-color: @active-background;
text-color: @active-foreground;
2018-10-04 14:26:51 +00:00
}
/* vim: set ft=css : */