Skip to content

Commit 386db2d

Browse files
committed
Update term_colors to match updated palette.
1 parent 924d354 commit 386db2d

15 files changed

+140
-140
lines changed

term_colors/MinTTY

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ CursorColour=252,232,195
44
Black=28,27,25
55
BoldBlack=45,43,40
66
Red=255,49,40
7-
BoldRed=218,73,57
7+
BoldRed=247,83,65
88
Green=81,159,80
99
BoldGreen=152,188,55
1010
Yellow=251,184,41
11-
BoldYellow=255,198,109
11+
BoldYellow=254,208,110
1212
Blue=85,115,163
13-
BoldBlue=109,156,190
13+
BoldBlue=142,178,247
1414
Magenta=224,44,109
1515
BoldMagenta=227,86,130
16-
Cyan=22,147,165
17-
BoldCyan=52,190,218
16+
Cyan=10,174,179
17+
BoldCyan=83,253,233
1818
White=145,129,117
1919
BoldWhite=252,232,195

term_colors/chrome_secure_shell

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
background-color: #1c1b19 //R:28 G:27 B:25
22
foreground-color: #fce8c3 //R:252 G:232 B:195
33
cursor-color: #fce8c3 //R:252 G:232 B:195
4-
color-palette-override: {"0":"#1c1b19","1":"#ff3128","2":"#519f50","3":"#fbb829","4":"#5573a3","5":"#e02c6d","6":"#1693a5","7":"#918175","8":"#2d2b28","9":"#da4939","10":"#98bc37","11":"#ffc66d","12":"#6d9cbe","13":"#e35682","14":"#34beda","15":"#fce8c3"}
4+
color-palette-override: {"0":"#1c1b19","1":"#ff3128","2":"#519f50","3":"#fbb829","4":"#5573a3","5":"#e02c6d","6":"#0aaeb3","7":"#918175","8":"#2d2b28","9":"#f75341","10":"#98bc37","11":"#fed06e","12":"#8eb2f7","13":"#e35682","14":"#53fde9","15":"#fce8c3"}

term_colors/gnome_terminal.sh

Lines changed: 71 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,77 @@
11
#!/usr/bin/env bash
22
# Base16 - Gnome Terminal color scheme install script
33

4-
[[ -z "$PROFILE_NAME" ]] && PROFILE_NAME="terminal.sexy"
5-
[[ -z "$PROFILE_SLUG" ]] && PROFILE_SLUG="terminal-dot-sexy"
4+
[[ -z "$PROFILE_NAME" ]] && PROFILE_NAME="srcery"
5+
[[ -z "$PROFILE_SLUG" ]] && PROFILE_SLUG="srcery"
66
[[ -z "$DCONF" ]] && DCONF=dconf
77
[[ -z "$UUIDGEN" ]] && UUIDGEN=uuidgen
88

99
dset() {
10-
local key="$1"; shift
11-
local val="$1"; shift
10+
local key="$1"; shift
11+
local val="$1"; shift
1212

13-
if [[ "$type" == "string" ]]; then
14-
val="'$val'"
15-
fi
13+
if [[ "$type" == "string" ]]; then
14+
val="'$val'"
15+
fi
1616

17-
"$DCONF" write "$PROFILE_KEY/$key" "$val"
17+
"$DCONF" write "$PROFILE_KEY/$key" "$val"
1818
}
1919

2020
# because dconf still doesn't have "append"
2121
dlist_append() {
22-
local key="$1"; shift
23-
local val="$1"; shift
22+
local key="$1"; shift
23+
local val="$1"; shift
2424

25-
local entries="$(
26-
{
27-
"$DCONF" read "$key" | tr -d '[]' | tr , "\n" | fgrep -v "$val"
28-
echo "'$val'"
29-
} | head -c-1 | tr "\n" ,
30-
)"
25+
local entries="$(
26+
{
27+
"$DCONF" read "$key" | tr -d '[]' | tr , "\n" | fgrep -v "$val"
28+
echo "'$val'"
29+
} | head -c-1 | tr "\n" ,
30+
)"
3131

32-
"$DCONF" write "$key" "[$entries]"
32+
"$DCONF" write "$key" "[$entries]"
3333
}
3434

3535
# Newest versions of gnome-terminal use dconf
3636
if which "$DCONF" > /dev/null 2>&1; then
37-
[[ -z "$BASE_KEY_NEW" ]] && BASE_KEY_NEW=/org/gnome/terminal/legacy/profiles:
38-
39-
if [[ -n "`$DCONF list $BASE_KEY_NEW/`" ]]; then
40-
if which "$UUIDGEN" > /dev/null 2>&1; then
41-
PROFILE_SLUG=`uuidgen`
42-
fi
43-
44-
if [[ -n "`$DCONF read $BASE_KEY_NEW/default`" ]]; then
45-
DEFAULT_SLUG=`$DCONF read $BASE_KEY_NEW/default | tr -d \'`
46-
else
47-
DEFAULT_SLUG=`$DCONF list $BASE_KEY_NEW/ | grep '^:' | head -n1 | tr -d :/`
48-
fi
49-
50-
DEFAULT_KEY="$BASE_KEY_NEW/:$DEFAULT_SLUG"
51-
PROFILE_KEY="$BASE_KEY_NEW/:$PROFILE_SLUG"
52-
53-
# copy existing settings from default profile
54-
$DCONF dump "$DEFAULT_KEY/" | $DCONF load "$PROFILE_KEY/"
55-
56-
# add new copy to list of profiles
57-
dlist_append $BASE_KEY_NEW/list "$PROFILE_SLUG"
58-
59-
# update profile values with theme options
60-
dset visible-name "'$PROFILE_NAME'"
61-
dset palette "['#1c1b19', '#ff3128', '#519f50', '#fbb829', '#5573a3', '#e02c6d', '#1693a5', '#918175', '#2d2b28', '#da4939', '#98bc37', '#ffc66d', '#6d9cbe', '#e35682', '#34beda', '#fce8c3']"
62-
dset background-color "'#1c1b19'"
63-
dset foreground-color "'#fce8c3'"
64-
dset bold-color "'#fce8c3'"
65-
dset bold-color-same-as-fg "true"
66-
dset use-theme-colors "false"
67-
dset use-theme-background "false"
68-
69-
unset PROFILE_NAME
70-
unset PROFILE_SLUG
71-
unset DCONF
72-
unset UUIDGEN
73-
exit 0
37+
[[ -z "$BASE_KEY_NEW" ]] && BASE_KEY_NEW=/org/gnome/terminal/legacy/profiles:
38+
39+
if [[ -n "`$DCONF list $BASE_KEY_NEW/`" ]]; then
40+
if which "$UUIDGEN" > /dev/null 2>&1; then
41+
PROFILE_SLUG=`uuidgen`
7442
fi
43+
44+
if [[ -n "`$DCONF read $BASE_KEY_NEW/default`" ]]; then
45+
DEFAULT_SLUG=`$DCONF read $BASE_KEY_NEW/default | tr -d \'`
46+
else
47+
DEFAULT_SLUG=`$DCONF list $BASE_KEY_NEW/ | grep '^:' | head -n1 | tr -d :/`
48+
fi
49+
50+
DEFAULT_KEY="$BASE_KEY_NEW/:$DEFAULT_SLUG"
51+
PROFILE_KEY="$BASE_KEY_NEW/:$PROFILE_SLUG"
52+
53+
# copy existing settings from default profile
54+
$DCONF dump "$DEFAULT_KEY/" | $DCONF load "$PROFILE_KEY/"
55+
56+
# add new copy to list of profiles
57+
dlist_append $BASE_KEY_NEW/list "$PROFILE_SLUG"
58+
59+
# update profile values with theme options
60+
dset visible-name "'$PROFILE_NAME'"
61+
dset palette "['#1c1b19', '#ff3128', '#519f50', '#fbb829', '#5573a3', '#e02c6d', '#0aaeb3', '#918175', '#2d2b28', '#f75341', '#98bc37', '#fed06e', '#8eb2f7', '#e35682', '#53fde9', '#fce8c3']"
62+
dset background-color "'#1c1b19'"
63+
dset foreground-color "'#fce8c3'"
64+
dset bold-color "'#fce8c3'"
65+
dset bold-color-same-as-fg "true"
66+
dset use-theme-colors "false"
67+
dset use-theme-background "false"
68+
69+
unset PROFILE_NAME
70+
unset PROFILE_SLUG
71+
unset DCONF
72+
unset UUIDGEN
73+
exit 0
74+
fi
7575
fi
7676

7777
# Fallback for Gnome 2 and early Gnome 3
@@ -81,34 +81,34 @@ fi
8181
PROFILE_KEY="$BASE_KEY/$PROFILE_SLUG"
8282

8383
gset() {
84-
local type="$1"; shift
85-
local key="$1"; shift
86-
local val="$1"; shift
84+
local type="$1"; shift
85+
local key="$1"; shift
86+
local val="$1"; shift
8787

88-
"$GCONFTOOL" --set --type "$type" "$PROFILE_KEY/$key" -- "$val"
88+
"$GCONFTOOL" --set --type "$type" "$PROFILE_KEY/$key" -- "$val"
8989
}
9090

9191
# Because gconftool doesn't have "append"
9292
glist_append() {
93-
local type="$1"; shift
94-
local key="$1"; shift
95-
local val="$1"; shift
96-
97-
local entries="$(
98-
{
99-
"$GCONFTOOL" --get "$key" | tr -d '[]' | tr , "\n" | fgrep -v "$val"
100-
echo "$val"
101-
} | head -c-1 | tr "\n" ,
102-
)"
103-
104-
"$GCONFTOOL" --set --type list --list-type $type "$key" "[$entries]"
93+
local type="$1"; shift
94+
local key="$1"; shift
95+
local val="$1"; shift
96+
97+
local entries="$(
98+
{
99+
"$GCONFTOOL" --get "$key" | tr -d '[]' | tr , "\n" | fgrep -v "$val"
100+
echo "$val"
101+
} | head -c-1 | tr "\n" ,
102+
)"
103+
104+
"$GCONFTOOL" --set --type list --list-type $type "$key" "[$entries]"
105105
}
106106

107107
# Append the Base16 profile to the profile list
108108
glist_append string /apps/gnome-terminal/global/profile_list "$PROFILE_SLUG"
109109

110110
gset string visible_name "$PROFILE_NAME"
111-
gset string palette "#1c1b19:#ff3128:#519f50:#fbb829:#5573a3:#e02c6d:#1693a5:#918175:#2d2b28:#da4939:#98bc37:#ffc66d:#6d9cbe:#e35682:#34beda:#fce8c3"
111+
gset string palette "#1c1b19:#ff3128:#519f50:#fbb829:#5573a3:#e02c6d:#0aaeb3:#918175:#2d2b28:#f75341:#98bc37:#fed06e:#8eb2f7:#e35682:#53fde9:#fce8c3"
112112
gset string background_color "#1c1b19"
113113
gset string foreground_color "#fce8c3"
114114
gset string bold_color "#fce8c3"

term_colors/guake.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99

1010
gconftool-2 -s -t string /apps/guake/style/background/color '#1c1c1b1b1919'
1111
gconftool-2 -s -t string /apps/guake/style/font/color '#fcfce8e8c3c3'
12-
gconftool-2 -s -t string /apps/guake/style/font/palette '#1c1c1b1b1919:#ffff31312828:#51519f9f5050:#fbfbb8b82929:#55557373a3a3:#e0e02c2c6d6d:#16169393a5a5:#919181817575:#2d2d2b2b2828:#dada49493939:#9898bcbc3737:#ffffc6c66d6d:#6d6d9c9cbebe:#e3e356568282:#3434bebedada:#fcfce8e8c3c3'
12+
gconftool-2 -s -t string /apps/guake/style/font/palette '#1c1c1b1b1919:#ffff31312828:#51519f9f5050:#fbfbb8b82929:#55557373a3a3:#e0e02c2c6d6d:#0a0aaeaeb3b3:#919181817575:#2d2d2b2b2828:#f7f753534141:#9898bcbc3737:#fefed0d06e6e:#8e8eb2b2f7f7:#e3e356568282:#5353fdfde9e9:#fcfce8e8c3c3'

term_colors/iTerm

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -40,22 +40,22 @@
4040
<key>Color Space</key>
4141
<string>sRGB</string>
4242
<key>Blue Component</key>
43-
<real>0.42745098039215684</real>
43+
<real>0.43137254901960786</real>
4444
<key>Green Component</key>
45-
<real>0.7764705882352941</real>
45+
<real>0.8156862745098039</real>
4646
<key>Red Component</key>
47-
<real>1</real>
47+
<real>0.996078431372549</real>
4848
</dict>
4949
<key>Ansi 12 Color</key>
5050
<dict>
5151
<key>Color Space</key>
5252
<string>sRGB</string>
5353
<key>Blue Component</key>
54-
<real>0.7450980392156863</real>
54+
<real>0.9686274509803922</real>
5555
<key>Green Component</key>
56-
<real>0.611764705882353</real>
56+
<real>0.6980392156862745</real>
5757
<key>Red Component</key>
58-
<real>0.42745098039215684</real>
58+
<real>0.5568627450980392</real>
5959
</dict>
6060
<key>Ansi 13 Color</key>
6161
<dict>
@@ -73,11 +73,11 @@
7373
<key>Color Space</key>
7474
<string>sRGB</string>
7575
<key>Blue Component</key>
76-
<real>0.8549019607843137</real>
76+
<real>0.9137254901960784</real>
7777
<key>Green Component</key>
78-
<real>0.7450980392156863</real>
78+
<real>0.9921568627450981</real>
7979
<key>Red Component</key>
80-
<real>0.20392156862745098</real>
80+
<real>0.3254901960784314</real>
8181
</dict>
8282
<key>Ansi 15 Color</key>
8383
<dict>
@@ -139,11 +139,11 @@
139139
<key>Color Space</key>
140140
<string>sRGB</string>
141141
<key>Blue Component</key>
142-
<real>0.6470588235294118</real>
142+
<real>0.7019607843137254</real>
143143
<key>Green Component</key>
144-
<real>0.5764705882352941</real>
144+
<real>0.6823529411764706</real>
145145
<key>Red Component</key>
146-
<real>0.08627450980392157</real>
146+
<real>0.0392156862745098</real>
147147
</dict>
148148
<key>Ansi 7 Color</key>
149149
<dict>
@@ -172,11 +172,11 @@
172172
<key>Color Space</key>
173173
<string>sRGB</string>
174174
<key>Blue Component</key>
175-
<real>0.2235294117647059</real>
175+
<real>0.2549019607843137</real>
176176
<key>Green Component</key>
177-
<real>0.28627450980392155</real>
177+
<real>0.3254901960784314</real>
178178
<key>Red Component</key>
179-
<real>0.8549019607843137</real>
179+
<real>0.9686274509803922</real>
180180
</dict>
181181
<key>Background Color</key>
182182
<dict>

term_colors/konsole

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Color=45,43,40
2525
Color=255,49,40
2626

2727
[Color1Intense]
28-
Color=218,73,57
28+
Color=247,83,65
2929

3030
[Color2]
3131
Color=81,159,80
@@ -37,13 +37,13 @@ Color=152,188,55
3737
Color=251,184,41
3838

3939
[Color3Intense]
40-
Color=255,198,109
40+
Color=254,208,110
4141

4242
[Color4]
4343
Color=85,115,163
4444

4545
[Color4Intense]
46-
Color=109,156,190
46+
Color=142,178,247
4747

4848
[Color5]
4949
Color=224,44,109
@@ -52,10 +52,10 @@ Color=224,44,109
5252
Color=227,86,130
5353

5454
[Color6]
55-
Color=22,147,165
55+
Color=10,174,179
5656

5757
[Color6Intense]
58-
Color=52,190,218
58+
Color=83,253,233
5959

6060
[Color7]
6161
Color=145,129,117
@@ -66,6 +66,6 @@ Color=252,232,195
6666
# --- general options ---
6767

6868
[General]
69-
Description=terminal.sexy
69+
Description=srcery
7070
Opacity=1
7171
Wallpaper=

term_colors/linux_console

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ if [ "$TERM" = "linux" ]; then
77
\e]P3fbb829
88
\e]P45573a3
99
\e]P5e02c6d
10-
\e]P61693a5
10+
\e]P60aaeb3
1111
\e]P7918175
1212
\e]P82d2b28
13-
\e]P9da4939
13+
\e]P9f75341
1414
\e]PA98bc37
15-
\e]PBffc66d
16-
\e]PC6d9cbe
15+
\e]PBfed06e
16+
\e]PC8eb2f7
1717
\e]PDe35682
18-
\e]PE34beda
18+
\e]PE53fde9
1919
\e]PFfce8c3
2020
"
2121
# get rid of artifacts

term_colors/putty

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ Windows Registry Editor Version 5.00
1010
"Colour6"="28,27,25"
1111
"Colour7"="45,43,40"
1212
"Colour8"="255,49,40"
13-
"Colour9"="218,73,57"
13+
"Colour9"="247,83,65"
1414
"Colour10"="81,159,80"
1515
"Colour11"="152,188,55"
1616
"Colour12"="251,184,41"
17-
"Colour13"="255,198,109"
17+
"Colour13"="254,208,110"
1818
"Colour14"="85,115,163"
19-
"Colour15"="109,156,190"
19+
"Colour15"="142,178,247"
2020
"Colour16"="224,44,109"
2121
"Colour17"="227,86,130"
22-
"Colour18"="22,147,165"
23-
"Colour19"="52,190,218"
22+
"Colour18"="10,174,179"
23+
"Colour19"="83,253,233"
2424
"Colour20"="145,129,117"
2525
"Colour21"="252,232,195"

0 commit comments

Comments
 (0)