blob: 8e08f0a8064f9a06e49128a33b0428072edbbf3f (
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
|
#!/bin/sh
. ./colors.sh
cat <<HEREDOC
# $theme
background = $background
foreground = $foreground
# cursor-color
# selection-background
# selection-foreground
palette = 0=$black
palette = 1=$red
palette = 2=$green
palette = 3=$yellow
palette = 4=$blue
palette = 5=$magenta
palette = 6=$cyan
palette = 7=$white
palette = 8=$brblack
palette = 9=$brred
palette = 10=$brgreen
palette = 11=$bryellow
palette = 12=$brblue
palette = 13=$brmagenta
palette = 14=$brcyan
palette = 15=$brwhite
HEREDOC
|