From 047955af007e5788746d3b261ac9e2df2740643b Mon Sep 17 00:00:00 2001 From: Jan Knížek Date: Wed, 22 Jul 2020 06:18:34 +0200 Subject: v1.0 first release --- templates/default.mustache | 42 ++++++++++++++++++++++++++---------------- 1 file changed, 26 insertions(+), 16 deletions(-) (limited to 'templates') diff --git a/templates/default.mustache b/templates/default.mustache index 97c3b77..afdfe1b 100644 --- a/templates/default.mustache +++ b/templates/default.mustache @@ -2,19 +2,29 @@ * Base16 wofi template by knezi * {{scheme-name}} scheme by {{scheme-author}} */ -base00 = "#{{base00-hex}}" -base01 = "#{{base01-hex}}" -base02 = "#{{base02-hex}}" -base03 = "#{{base03-hex}}" -base04 = "#{{base04-hex}}" -base05 = "#{{base05-hex}}" -base06 = "#{{base06-hex}}" -base07 = "#{{base07-hex}}" -base08 = "#{{base08-hex}}" -base09 = "#{{base09-hex}}" -base0A = "#{{base0A-hex}}" -base0B = "#{{base0B-hex}}" -base0C = "#{{base0C-hex}}" -base0D = "#{{base0D-hex}}" -base0E = "#{{base0E-hex}}" -base0F = "#{{base0F-hex}}" +window { + background-color: #{{base00-hex}}; + color: #{{base05-hex}}; +} + +#entry:nth-child(odd) { + background-color: #{{base00-hex}}; +} + +#entry:nth-child(even) { + background-color: #{{base01-hex}}; +} + +#entry:selected { + background-color: #{{base02-hex}}; +} + +#input { + background-color: #{{base01-hex}}; + color: #{{base04-hex}}; + border-color: #{{base02-hex}}; +} + +#input:focus { + border-color: #{{base0A-hex}}; +} -- cgit