123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- /*
- * sidetab-adapta + slight transparency changes (kabouik),
- * based on sidetab theme by deadguy and sidetab-adapta.
- *
- * This theme has been dedicated to the public domain.
- *
- */
-
- configuration {
- show-icons: true;
- sidebar-mode: true;
- }
-
- * {
- background-color: argb:aa222222; /*argb:aa292D32*/
- text-color: #ffffff;
-
- accent-color: #00bcd4;
- accent2-color: #4db6ac;
- hover-color: #39454b;
- urgent-color: #ff5252;
- window-color: #ffffff;
-
- selected-normal-foreground: @window-color;
- normal-foreground: @text-color;
- selected-normal-background: @hover-color;
- normal-background: transparent;
-
- selected-urgent-foreground: @background-color;
- urgent-foreground: @text-color;
- selected-urgent-background: @urgent-color;
- urgent-background: @background-color;
-
- selected-active-foreground: @window-color;
- active-foreground: @text-color;
- selected-active-background: @hover-color;
- active-background: @accent-color;
- }
-
- #window {
- anchor: west;
- location: west;
- width: 384px;
- height: 100%;
- }
-
- #mainbox {
- children: [ entry, listview, mode-switcher ];
- }
-
- entry {
- expand: false;
- padding: 8px;
- background-color: @background-color;
- }
-
- element {
- padding: 8px;
- }
-
- element normal.normal {
- background-color: @normal-background;
- text-color: @normal-foreground;
- }
-
- element normal.urgent {
- background-color: @urgent-background;
- text-color: @urgent-foreground;
- }
-
- element normal.active {
- background-color: @active-background;
- text-color: @active-foreground;
- }
-
- element selected.normal {
- background-color: @selected-normal-background;
- text-color: @selected-normal-foreground;
- border: 0 4px solid 0 0;
- border-color: @accent2-color;
- }
-
- element selected.urgent {
- background-color: @selected-urgent-background;
- text-color: @selected-urgent-foreground;
- }
-
- element selected.active {
- background-color: @selected-active-background;
- text-color: @selected-active-foreground;
- }
-
- element alternate.normal {
- background-color: @normal-background;
- text-color: @normal-foreground;
- }
-
- element alternate.urgent {
- background-color: @urgent-background;
- text-color: @urgent-foreground;
- }
-
- element alternate.active {
- background-color: @active-background;
- text-color: @active-foreground;
- }
-
- button {
- padding: 8px;
- }
-
- button selected {
- background-color: @active-background;
- text-color: @background-color;
- }
-
- /* vim: ft=css
|