forked from Gnuplotting/gnuplot-palettes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pastel2.pal
26 lines (24 loc) · 847 Bytes
/
pastel2.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
26
# line styles for ColorBrewer Pastel2
# for use with qualitative/categorical data
# provides 8 pale colors based on Set2
# compatible with gnuplot >=4.2
# author: Anna Schneider
# line styles
set style line 1 lt 1 lc rgb '#B3E2CD' # pale teal
set style line 2 lt 1 lc rgb '#FDCDAC' # pale orange
set style line 3 lt 1 lc rgb '#CDB5E8' # pale lilac
set style line 4 lt 1 lc rgb '#F4CAE4' # pale magenta
set style line 5 lt 1 lc rgb '#D6F5C9' # pale lime green
set style line 6 lt 1 lc rgb '#FFF2AE' # pale banana
set style line 7 lt 1 lc rgb '#F1E2CC' # pale tan
set style line 8 lt 1 lc rgb '#CCCCCC' # pale grey
# palette
set palette maxcolors 8
set palette defined ( 0 '#B3E2CD',\
1 '#FDCDAC',\
2 '#CDB5E8',\
3 '#F4CAE4',\
4 '#D6F5C9',\
5 '#FFF2AE',\
6 '#F1E2CC',\
7 '#CCCCCC' )