mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-01-23 22:38:36 +01:00
templates: Add background, foreground and cursor.
This commit is contained in:
parent
0834cd024b
commit
08f396c653
@ -1,16 +0,0 @@
|
||||
{color0}
|
||||
{color1}
|
||||
{color2}
|
||||
{color3}
|
||||
{color4}
|
||||
{color5}
|
||||
{color6}
|
||||
{color7}
|
||||
{color8}
|
||||
{color9}
|
||||
{color10}
|
||||
{color11}
|
||||
{color12}
|
||||
{color13}
|
||||
{color14}
|
||||
{color15}
|
@ -1,6 +1,9 @@
|
||||
/* CSS variables
|
||||
Generated by 'wal' */
|
||||
:root {{
|
||||
--background: {background};
|
||||
--foreground: {foreground};
|
||||
--cursor: {cursor};
|
||||
--color0: {color0};
|
||||
--color1: {color1};
|
||||
--color2: {color2};
|
||||
|
25
pywal/templates/colors.json
Normal file
25
pywal/templates/colors.json
Normal 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}"
|
||||
}}
|
||||
}}
|
@ -1,5 +1,8 @@
|
||||
// SCSS Variables
|
||||
// Generated by 'wal'
|
||||
$background: {background};
|
||||
$foreground: {foreground};
|
||||
$cursor: {cursor};
|
||||
$color0: {color0};
|
||||
$color1: {color1};
|
||||
$color2: {color2};
|
||||
|
@ -1,5 +1,8 @@
|
||||
# Shell variables
|
||||
# Generated by 'wal'
|
||||
background='{background}'
|
||||
foreground='{foreground}'
|
||||
cursor='{cursor}'
|
||||
color0='{color0}'
|
||||
color1='{color1}'
|
||||
color2='{color2}'
|
||||
|
Loading…
Reference in New Issue
Block a user