2018-04-03 15:55:41 +02:00
|
|
|
/* ==========================================================================
|
|
|
|
Rofi color theme
|
|
|
|
|
|
|
|
File: midgard.rasi
|
|
|
|
Desc: Dark color theme for Rofi
|
|
|
|
Author: midgard
|
|
|
|
Modified: Mon Apr 3 2018
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
* {
|
|
|
|
/* Theme settings */
|
|
|
|
scrollbar: true;
|
|
|
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
|
|
foreground: rgba(193, 193, 193, 100%);
|
|
|
|
alt-foreground: rgba(193, 193, 193, 50%);
|
2022-06-11 20:00:32 +02:00
|
|
|
/*highlighted-background: rgba( 85, 54, 31, 50%);*/
|
2022-08-30 01:52:44 +02:00
|
|
|
highlighted-background: rgba(155, 78, 66, 50%);
|
2018-04-03 15:55:41 +02:00
|
|
|
|
|
|
|
scrollbar-background: transparent;
|
|
|
|
scrollbar-handle: @alt-foreground;
|
|
|
|
|
|
|
|
text-color: @foreground;
|
|
|
|
}
|
|
|
|
|
|
|
|
#window {
|
|
|
|
border: none;
|
2022-06-11 20:00:32 +02:00
|
|
|
/*width: 100%;*/
|
|
|
|
height: 50%;
|
|
|
|
location: south;
|
|
|
|
anchor: south;
|
|
|
|
children: [mainbox];
|
2022-08-30 01:52:44 +02:00
|
|
|
background-color: rgba(0,0,0,0.0);
|
2018-08-20 02:23:26 +02:00
|
|
|
font: "Fira Code Light 14";
|
2018-04-03 15:55:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#dummy {
|
2022-06-11 20:00:32 +02:00
|
|
|
/*expand: true;*/
|
2018-04-03 15:55:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#mainbox {
|
2022-06-11 20:00:32 +02:00
|
|
|
expand: true;
|
2018-04-03 15:55:41 +02:00
|
|
|
padding: 0px 0px 6px;
|
2022-06-11 20:00:32 +02:00
|
|
|
/*margin: 0 25%;*/
|
2022-08-30 01:52:44 +02:00
|
|
|
background-color: rgba(17, 17, 17, 0.85);
|
2018-04-03 15:55:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#element {
|
|
|
|
padding: 4px 10px;
|
2018-08-20 02:23:26 +02:00
|
|
|
font: "Fira Code Light 12";
|
2018-04-03 15:55:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#element.selected {
|
|
|
|
background-color: @highlighted-background;
|
|
|
|
}
|
|
|
|
|
|
|
|
#inputbar {
|
|
|
|
padding: 10px 2px;
|
|
|
|
|
|
|
|
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
|
|
|
|
}
|
|
|
|
|
|
|
|
#prompt {
|
|
|
|
text-color: @alt-foreground;
|
|
|
|
font: "Fira Sans Light 14";
|
|
|
|
}
|
|
|
|
|
|
|
|
#textbox-prompt-colon {
|
|
|
|
expand: false;
|
|
|
|
margin: 0px 0.4em 0em 0em ;
|
|
|
|
}
|
|
|
|
|
|
|
|
#scrollbar {
|
|
|
|
width: 0px;
|
|
|
|
border: 0;
|
|
|
|
handle-width: 2px;
|
|
|
|
handle-color: @scrollbar-handle;
|
|
|
|
background-color: @scrollbar-background;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim: set ft=scss noet :*/
|