blob: 8f235fa6744aaa249c6933028cff855c8e60c5f3 (
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
! special
*.foreground: #$foreground
*.background: #$background
! black
*.color0: #$black
*.color8: #$brblack
! red
*.color1: #$red
*.color9: #$brred
! green
*.color2: #$green
*.color10: #$brgreen
! yellow
*.color3: #$yellow
*.color11: #$bryellow
! blue
*.color4: #$blue
*.color12: #$brblue
! magenta
*.color5: #$magenta
*.color13: #$brmagenta
! cyan
*.color6: #$cyan
*.color14: #$brcyan
! white
*.color7: #$white
*.color15: #$brwhite
HEREDOC
|