dotfiles/.config/rofi/config.rasi

121 lines
2.9 KiB
Plaintext
Raw Normal View History

2020-11-29 12:28:13 +00:00
/* -*- mode: css -*- */
2020-11-28 17:08:48 +00:00
/*
* sidetab-adapta theme,
* based on sidetab theme by deadguy.
*
* Theme found at https://github.com/shizonic/nord-rofi-theme
2020-11-29 12:28:13 +00:00
* Modified by Pundrak
2020-11-28 17:08:48 +00:00
*
* This theme has been dedicated to the public domain.
*
*/
configuration {
2020-11-28 17:08:48 +00:00
show-icons: true;
2020-11-29 12:28:13 +00:00
sidebar-mode: false;
2021-01-02 12:27:10 +00:00
modi: "window,ssh,drun";
2020-11-28 17:08:48 +00:00
}
* {
background-color: #2e344030;
2020-11-28 17:08:48 +00:00
text-color: #FFFFFF;
accent-color: #88c0d0;
accent2-color: #88c0d0;
hover-color: #8fbcbb;
urgent-color: #FFFFFF;
window-color: #ffffff;
selected-normal-foreground: @background-color;
normal-foreground: @text-color;
selected-normal-background: @hover-color;
normal-background: @background-color;
selected-urgent-foreground: @background-color;
urgent-foreground: @background-color;
selected-urgent-background: @urgent-color;
urgent-background: @background-color;
selected-active-foreground: @background-color;
active-foreground: @background-color;
selected-active-background: @hover-color;
active-background: @accent-color;
}
#window {
2020-11-29 12:28:13 +00:00
anchor: center;
location: center;
width: 800px;
height: 80%;
2020-11-28 17:08:48 +00:00
}
#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;
}