forked from Gnuplotting/gnuplot-palettes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
set3.pal
26 lines (24 loc) · 858 Bytes
/
set3.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 Set3
# for use with qualitative/categorical data
# provides 8 colors that are more saturated than the Pastels but less so than Set2
# compatible with gnuplot >=4.2
# author: Anna Schneider
# line styles
set style line 1 lt 1 lc rgb '#8DD3C7' # teal
set style line 2 lt 1 lc rgb '#FFFFB3' # banana
set style line 3 lt 1 lc rgb '#BEBADA' # lilac
set style line 4 lt 1 lc rgb '#FB8072' # red
set style line 5 lt 1 lc rgb '#80B1D3' # steel blue
set style line 6 lt 1 lc rgb '#FDB462' # adobe orange
set style line 7 lt 1 lc rgb '#B3DE69' # lime green
set style line 8 lt 1 lc rgb '#FCCDE5' # mauve
# palette
set palette maxcolors 8
set palette defined ( 0 '#8DD3C7',\
1 '#FFFFB3',\
2 '#BEBADA',\
3 '#FB8072',\
4 '#80B1D3',\
5 '#FDB462',\
6 '#B3DE69',\
7 '#FCCDE5' )