blob: dfaff8e5beaa081071e7c49c586a52ac78879e4b (
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
|
#!/bin/sh
. ./colors.sh
cat <<HEREDOC
# $theme
# Default colors
[colors.primary]
foreground = '#$foreground'
background = '#$background'
# Normal colors
[colors.normal]
black = '#$black'
red = '#$red'
green = '#$green'
yellow = '#$yellow'
blue = '#$blue'
magenta = '#$magenta'
cyan = '#$cyan'
white = '#$white'
# Bright colors
[colors.bright]
black = '#$brblack'
red = '#$brred'
green = '#$brgreen'
yellow = '#$bryellow'
blue = '#$brblue'
magenta = '#$brmagenta'
cyan = '#$brcyan'
white = '#$brwhite'
HEREDOC
|