92 lines
1.6 KiB
Plaintext
92 lines
1.6 KiB
Plaintext
|
/*******************************************************************************
|
||
|
* ROFI VERTICAL THEME USING THE NORD COLOR PALETTE
|
||
|
* User : LR-Tech
|
||
|
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
|
||
|
* Nord Project Repo : https://github.com/arcticicestudio/nord
|
||
|
*******************************************************************************/
|
||
|
|
||
|
* {
|
||
|
font: "Terminess 12";
|
||
|
|
||
|
COLORNB: #181818;
|
||
|
COLORNF: #707070;
|
||
|
COLORSB: #333333;
|
||
|
COLORSF: #CCCCCC;
|
||
|
|
||
|
background-color: transparent;
|
||
|
text-color: @COLORNF;
|
||
|
accent-color: @COLORSF;
|
||
|
|
||
|
margin: 0px;
|
||
|
padding: 0px;
|
||
|
spacing: 0px;
|
||
|
}
|
||
|
|
||
|
window {
|
||
|
background-color: @COLORNB;
|
||
|
border-color: @COLORNF;
|
||
|
|
||
|
location: center;
|
||
|
width: 50%;
|
||
|
height: 50%;
|
||
|
border: 1px;
|
||
|
}
|
||
|
|
||
|
inputbar {
|
||
|
padding: 4px 4px;
|
||
|
spacing: 6px;
|
||
|
children: [ prompt, entry ];
|
||
|
}
|
||
|
|
||
|
prompt, entry, element-text, element-icon {
|
||
|
vertical-align: 0.5;
|
||
|
}
|
||
|
|
||
|
prompt {
|
||
|
text-color: @COLORSF;
|
||
|
}
|
||
|
|
||
|
listview {
|
||
|
lines: 8;
|
||
|
columns: 1;
|
||
|
|
||
|
fixed-height: false;
|
||
|
}
|
||
|
|
||
|
element {
|
||
|
padding: 4px;
|
||
|
spacing: 4px;
|
||
|
}
|
||
|
|
||
|
element normal urgent {
|
||
|
text-color: @COLORNF;
|
||
|
}
|
||
|
|
||
|
element normal active {
|
||
|
text-color: @COLORNF;
|
||
|
}
|
||
|
|
||
|
element selected {
|
||
|
text-color: @COLORSF;
|
||
|
}
|
||
|
|
||
|
element selected normal {
|
||
|
background-color: @COLORSB;
|
||
|
}
|
||
|
|
||
|
element selected urgent {
|
||
|
background-color: @COLORSF;
|
||
|
}
|
||
|
|
||
|
element selected active {
|
||
|
background-color: @COLORSF;
|
||
|
}
|
||
|
|
||
|
element-icon {
|
||
|
size: 0.75em;
|
||
|
}
|
||
|
|
||
|
element-text {
|
||
|
text-color: inherit;
|
||
|
}
|