Add sidetab-adapta theme (#39)
This commit is contained in:
parent
4033ccd299
commit
2088c73e40
1 changed files with 116 additions and 0 deletions
116
User Themes/sidetab-adapta.rasi
Normal file
116
User Themes/sidetab-adapta.rasi
Normal file
|
@ -0,0 +1,116 @@
|
||||||
|
/*
|
||||||
|
* sidetab-adapta theme,
|
||||||
|
* based on sidetab theme by deadguy.
|
||||||
|
*
|
||||||
|
* This theme has been dedicated to the public domain.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
configuration {
|
||||||
|
show-icons: true;
|
||||||
|
sidebar-mode: true;
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
background-color: #222d32;
|
||||||
|
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: @background-color;
|
||||||
|
|
||||||
|
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;
|
||||||
|
margin: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
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
|
Loading…
Reference in a new issue