forked from Gnuplotting/gnuplot-palettes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
brbg.pal
25 lines (23 loc) · 830 Bytes
/
brbg.pal
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
# line styles for ColorBrewer BrBG
# for use with divering data
# provides 8 colors with brown low, white middle, and blue-green high
# compatible with gnuplot >=4.2
# author: Anna Schneider
# line styles
set style line 1 lt 1 lc rgb '#8C510A' # dark brown
set style line 2 lt 1 lc rgb '#BF812D' # medium brown
set style line 3 lt 1 lc rgb '#DFC27D' #
set style line 4 lt 1 lc rgb '#F6E8C3' # pale brown
set style line 5 lt 1 lc rgb '#C7EAE5' # pale blue-green
set style line 6 lt 1 lc rgb '#80CDC1' #
set style line 7 lt 1 lc rgb '#35978F' # medium blue-green
set style line 8 lt 1 lc rgb '#01665E' # dark blue-green
# palette
set palette defined ( 0 '#8C510A',\
1 '#BF812D',\
2 '#DFC27D',\
3 '#F6E8C3',\
4 '#C7EAE5',\
5 '#80CDC1',\
6 '#35978F',\
7 '#01665E' )