68d5cef1b5
"Noto Mono" doesn't exist, it should be "Noto Sans Mono", but I decided to take Fira Mono anyway.
82 lines
1.6 KiB
SCSS
82 lines
1.6 KiB
SCSS
/* ==========================================================================
|
|
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%);
|
|
highlighted-background: rgba( 53, 81, 33, 50%);
|
|
|
|
scrollbar-background: transparent;
|
|
scrollbar-handle: @alt-foreground;
|
|
|
|
text-color: @foreground;
|
|
}
|
|
|
|
#window {
|
|
border: none;
|
|
width: 100%;
|
|
height: 100%;
|
|
location: north;
|
|
anchor: north;
|
|
children: [mainbox, dummy];
|
|
background-color: rgba(0,0,0,0.5);
|
|
font: "Fira Mono 14";
|
|
}
|
|
|
|
#dummy {
|
|
expand: true;
|
|
}
|
|
|
|
#mainbox {
|
|
expand: false;
|
|
padding: 0px 0px 6px;
|
|
margin: 0 25%;
|
|
background-color: #000;
|
|
}
|
|
|
|
#element {
|
|
padding: 4px 10px;
|
|
font: "Fira Mono 12";
|
|
}
|
|
|
|
#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 :*/
|