Skip to content

Commit

Permalink
Revert "Rofi: remove subjective non-color values (danth#179)"
Browse files Browse the repository at this point in the history
This reverts commit 91e46de.
revert rofi changes
  • Loading branch information
TotalChaos05 committed Oct 25, 2023
1 parent 622fb60 commit f093785
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions modules/rofi/template.mustache
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/**
* Base16 {{scheme-name}} ROFI Color theme
*
* Authors
* Scheme: {{scheme-author}}
* Template: Tinted Theming (https://github.com/tinted-theming)
*/

* {
background-color: rgba ( {{base00-rgb-r}}, {{base00-rgb-g}}, {{base00-rgb-b}}, 0 % );
separatorcolor: @foreground;
Expand Down Expand Up @@ -32,23 +40,42 @@
alternate-normal-text: rgba ( {{base05-rgb-r}}, {{base05-rgb-g}}, {{base05-rgb-b}}, 100 % );
alternate-active-text: rgba ( {{base0D-rgb-r}}, {{base0D-rgb-g}}, {{base0D-rgb-b}}, 100 % );
alternate-urgent-text: rgba ( {{base08-rgb-r}}, {{base08-rgb-g}}, {{base08-rgb-b}}, 100 % );

spacing: 2;
}
window {
background-color: @background;
border: 1;
padding: 5;
}
mainbox {
border: 0;
padding: 0;
}
message {
border: 1px dash 0px 0px ;
border-color: @separatorcolor;
padding: 1px ;
}
textbox {
text-color: @base-text;
}
listview {
fixed-height: 0;
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
spacing: 2px ;
scrollbar: true;
padding: 2px 0px 0px ;
}
element-text, element-icon {
background-color: inherit;
text-color: inherit;
}
element {
border: 0;
padding: 1px ;
}
element normal.normal {
background-color: @normal-background;
text-color: @normal-text;
Expand Down Expand Up @@ -86,30 +113,45 @@ element alternate.active {
text-color: @alternate-active-text;
}
scrollbar {
width: 4px ;
border: 0;
handle-color: @normal-foreground;
handle-width: 8px ;
padding: 0;
}
sidebar {
border: 2px dash 0px 0px ;
border-color: @separatorcolor;
}
button {
spacing: 0;
text-color: @normal-text;
}
button selected {
background-color: @selected-normal-background;
text-color: @selected-normal-text;
}
inputbar {
spacing: 0px;
text-color: @normal-text;
padding: 1px ;
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
}
case-indicator {
spacing: 0;
text-color: @normal-text;
}
entry {
spacing: 0;
text-color: @normal-text;
}
prompt {
spacing: 0;
text-color: @normal-text;
}
textbox-prompt-colon {
expand: false;
str: ":";
margin: 0px 0.3000em 0.0000em 0.0000em ;
text-color: inherit;
}

0 comments on commit f093785

Please sign in to comment.