templates: Add background, foreground and cursor.

This commit is contained in:
Dylan Araps 2017-06-29 22:35:47 +10:00
parent 0834cd024b
commit 08f396c653
5 changed files with 34 additions and 16 deletions

View File

@ -1,16 +0,0 @@
{color0}
{color1}
{color2}
{color3}
{color4}
{color5}
{color6}
{color7}
{color8}
{color9}
{color10}
{color11}
{color12}
{color13}
{color14}
{color15}

View File

@ -1,6 +1,9 @@
/* CSS variables
Generated by 'wal' */
:root {{
--background: {background};
--foreground: {foreground};
--cursor: {cursor};
--color0: {color0};
--color1: {color1};
--color2: {color2};

View File

@ -0,0 +1,25 @@
{{
"special": {{
"background": "{background}",
"foreground": "{foreground}",
"cursor": "{cursor}"
}},
"colors": {{
"color0": "{color0}",
"color1": "{color1}",
"color2": "{color2}",
"color3": "{color3}",
"color4": "{color4}",
"color5": "{color5}",
"color6": "{color6}",
"color7": "{color7}",
"color8": "{color8}",
"color9": "{color9}",
"color10": "{color10}",
"color11": "{color11}",
"color12": "{color12}",
"color13": "{color13}",
"color14": "{color14}",
"color15": "{color15}"
}}
}}

View File

@ -1,5 +1,8 @@
// SCSS Variables
// Generated by 'wal'
$background: {background};
$foreground: {foreground};
$cursor: {cursor};
$color0: {color0};
$color1: {color1};
$color2: {color2};

View File

@ -1,5 +1,8 @@
# Shell variables
# Generated by 'wal'
background='{background}'
foreground='{foreground}'
cursor='{cursor}'
color0='{color0}'
color1='{color1}'
color2='{color2}'