rofi-themes/User Themes/sidetab-adapta.rasi

124 lines
3 KiB
Text
Raw Normal View History

2019-07-25 14:18:19 +02:00
/*
* 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;
2019-09-26 08:23:37 +02:00
text-color: #cfd8dc;
selected-text-color: #ffffff;
2019-07-25 14:18:19 +02:00
accent-color: #00bcd4;
2019-09-26 08:23:37 +02:00
second-accent-color: #4db6ac;
2019-07-25 14:18:19 +02:00
urgent-color: #ff5252;
2019-09-26 08:23:37 +02:00
hover-color: #39454b;
2019-07-25 14:18:19 +02:00
2019-09-26 08:23:37 +02:00
active-text: @selected-text-color;
active-background: @accent-color;
selected-active-text: @selected-text-color;
selected-active-background: @hover-color;
selected-active-border: @accent-color;
2019-07-25 14:18:19 +02:00
2019-09-26 08:23:37 +02:00
normal-text: @text-color;
normal-background: @background-color;
selected-normal-text: @selected-text-color;
selected-normal-background: @hover-color;
selected-normal-border: @second-accent-color;
2019-07-25 14:18:19 +02:00
2019-09-26 08:23:37 +02:00
urgent-text: @selected-text-color;
urgent-background: @urgent-color;
selected-urgent-text: @selected-text-color;
selected-urgent-background: @hover-color;
selected-urgent-border: @urgent-color;
2019-07-25 14:18:19 +02:00
}
#window {
anchor: west;
location: west;
width: 384px;
height: 100%;
}
#mainbox {
children: [ entry, listview, mode-switcher ];
}
entry {
expand: false;
margin: 8px;
}
element {
padding: 8px;
}
2019-09-26 08:23:37 +02:00
element normal.active {
background-color: @active-background;
text-color: @active-text;
}
2019-07-25 14:18:19 +02:00
element normal.normal {
background-color: @normal-background;
2019-09-26 08:23:37 +02:00
text-color: @normal-text;
2019-07-25 14:18:19 +02:00
}
element normal.urgent {
background-color: @urgent-background;
2019-09-26 08:23:37 +02:00
text-color: @urgent-text;
2019-07-25 14:18:19 +02:00
}
2019-09-26 08:23:37 +02:00
element selected {
border: 0 4px solid 0 0;
}
element selected.active {
background-color: @selected-active-background;
text-color: @selected-active-text;
border-color: @selected-active-border;
2019-07-25 14:18:19 +02:00
}
element selected.normal {
background-color: @selected-normal-background;
2019-09-26 08:23:37 +02:00
text-color: @selected-normal-text;
border-color: @selected-normal-border;
2019-07-25 14:18:19 +02:00
}
element selected.urgent {
background-color: @selected-urgent-background;
2019-09-26 08:23:37 +02:00
text-color: @selected-urgent-text;
border-color: @selected-urgent-border;
2019-07-25 14:18:19 +02:00
}
2019-09-26 08:23:37 +02:00
element alternate.active {
background-color: @active-background;
text-color: @active-text;
2019-07-25 14:18:19 +02:00
}
element alternate.normal {
background-color: @normal-background;
2019-09-26 08:23:37 +02:00
text-color: @normal-text;
2019-07-25 14:18:19 +02:00
}
element alternate.urgent {
background-color: @urgent-background;
2019-09-26 08:23:37 +02:00
text-color: @urgent-text;
2019-07-25 14:18:19 +02:00
}
button {
padding: 8px;
}
button selected {
background-color: @active-background;
text-color: @background-color;
}
/* vim: ft=css