blob: d3190a80dc98dfd73830d7a6344b49118994e86a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
. ./colors.sh
cat <<HEREDOC
# $theme
colors:
# Default colors
primary:
foreground: '#$foreground'
background: '#$background'
# Normal colors
normal:
black: '#$black'
red: '#$red'
green: '#$green'
yellow: '#$yellow'
blue: '#$blue'
magenta: '#$magenta'
cyan: '#$cyan'
white: '#$white'
# Bright colors
bright:
black: '#$brblack'
red: '#$brred'
green: '#$brgreen'
yellow: '#$bryellow'
blue: '#$brblue'
magenta: '#$brmagenta'
cyan: '#$brcyan'
white: '#$brwhite'
HEREDOC
|