commit
d66b0df9c1
2 changed files with 65 additions and 0 deletions
|
@ -18,3 +18,6 @@
|
|||
|
||||
#### arc-red-dark
|
||||
![arc-red-dark](https://53280.de/rofi/arc-red.png)
|
||||
|
||||
#### ribbon
|
||||
![ribbon](https://53280.de/rofi/ribbon.png)
|
||||
|
|
62
User Themes/ribbon.rasi
Normal file
62
User Themes/ribbon.rasi
Normal file
|
@ -0,0 +1,62 @@
|
|||
/**
|
||||
* ROFI Color theme
|
||||
* User: Rokit
|
||||
*/
|
||||
|
||||
* {
|
||||
base-bg: #d9d6b7ee;
|
||||
selected-bg: #f7f0ac;
|
||||
base-color: #222222aa;
|
||||
selected-color: #222;
|
||||
border-color: #00000066;
|
||||
transparent: #00000000;
|
||||
text-color: @base-color;
|
||||
font: "Times New Roman 20";
|
||||
}
|
||||
#window {
|
||||
anchor: south;
|
||||
location: south;
|
||||
width: 100%;
|
||||
background-color: @base-bg;
|
||||
margin: 0px 0px 10% 0px;
|
||||
children: [ horibox ];
|
||||
}
|
||||
#horibox {
|
||||
background-color: @transparent;
|
||||
orientation: horizontal;
|
||||
children: [ prompt, textbox-prompt-colon, entry, listview ];
|
||||
}
|
||||
#prompt {
|
||||
text-color: @selected-color;
|
||||
padding: 0.7em 0px 0.7em 10px;
|
||||
background-color: @transparent;
|
||||
}
|
||||
#textbox-prompt-colon {
|
||||
expand: false;
|
||||
str: ":";
|
||||
padding: 0.7em 10px 0.7em 0px;
|
||||
text-color: @selected-color;
|
||||
background-color: @transparent;
|
||||
}
|
||||
#entry {
|
||||
padding: 0.7em;
|
||||
text-color: @selected-color;
|
||||
background-color: #eee;
|
||||
expand: false;
|
||||
width: 10em;
|
||||
}
|
||||
#listview {
|
||||
background-color: @transparent;
|
||||
layout: horizontal;
|
||||
spacing: 5px;
|
||||
lines: 100;
|
||||
}
|
||||
#element {
|
||||
background-color: @transparent;
|
||||
padding: 0.7em;
|
||||
}
|
||||
#element selected {
|
||||
border: 0px 1px;
|
||||
text-color: @selected-color;
|
||||
background-color: @selected-bg;
|
||||
}
|
Loading…
Reference in a new issue