diff options
author | Mariusz Korzekwa <mariusz.korzekwa@gmail.com> | 2019-01-11 00:19:32 +0100 |
---|---|---|
committer | Mariusz Korzekwa <mariusz.korzekwa@gmail.com> | 2019-01-11 00:21:21 +0100 |
commit | 481e73c74ead9236ffd3b71e23c5c7fc89c70b30 (patch) | |
tree | 6fb15cccc050e3e17e4201ff694c13fe4f373f1d /templates | |
parent | 75231228bfd8f8ab2cff49954e0d16a91c8f14cd (diff) |
Add new config only with colors
Diffstat (limited to 'templates')
-rw-r--r-- | templates/colors.mustache | 37 | ||||
-rw-r--r-- | templates/config.yaml | 5 |
2 files changed, 42 insertions, 0 deletions
diff --git a/templates/colors.mustache b/templates/colors.mustache new file mode 100644 index 0000000..587fd19 --- /dev/null +++ b/templates/colors.mustache @@ -0,0 +1,37 @@ +/** + * Base16 {{scheme-name}} ROFI Color theme + * + * Authors + * Scheme: {{scheme-author}} + * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista) + */ + +* { + red: rgba ( {{base08-rgb-r}}, {{base08-rgb-g}}, {{base08-rgb-b}}, 100 % ); + blue: rgba ( {{base0D-rgb-r}}, {{base0D-rgb-g}}, {{base0D-rgb-b}}, 100 % ); + lightfg: rgba ( {{base06-rgb-r}}, {{base06-rgb-g}}, {{base06-rgb-b}}, 100 % ); + lightbg: rgba ( {{base01-rgb-r}}, {{base01-rgb-g}}, {{base01-rgb-b}}, 100 % ); + foreground: rgba ( {{base05-rgb-r}}, {{base05-rgb-g}}, {{base05-rgb-b}}, 100 % ); + background: rgba ( {{base00-rgb-r}}, {{base00-rgb-g}}, {{base00-rgb-b}}, 100 % ); + background-color: rgba ( {{base00-rgb-r}}, {{base00-rgb-g}}, {{base00-rgb-b}}, 0 % ); + separatorcolor: @foreground; + border-color: @foreground; + selected-normal-foreground: @lightbg; + selected-normal-background: @lightfg; + selected-active-foreground: @background; + selected-active-background: @blue; + selected-urgent-foreground: @background; + selected-urgent-background: @red; + normal-foreground: @foreground; + normal-background: @background; + active-foreground: @blue; + active-background: @background; + urgent-foreground: @red; + urgent-background: @background; + alternate-normal-foreground: @foreground; + alternate-normal-background: @lightbg; + alternate-active-foreground: @blue; + alternate-active-background: @lightbg; + alternate-urgent-foreground: @red; + alternate-urgent-background: @lightbg; +} diff --git a/templates/config.yaml b/templates/config.yaml index bdb6c74..a217666 100644 --- a/templates/config.yaml +++ b/templates/config.yaml @@ -1,6 +1,11 @@ default: extension: .rasi output: themes + +colors: + extension: .rasi + output: themes + old: extension: .config output: themes |