blues.pal (779B)
1 # line styles for ColorBrewer Blues 2 # for use with sequential data 3 # provides 8 blue colors of increasing saturation 4 # compatible with gnuplot >=4.2 5 # author: Anna Schneider 6 7 # line styles 8 set style line 1 lt 1 lc rgb '#F7FBFF' # very light blue 9 set style line 2 lt 1 lc rgb '#DEEBF7' # 10 set style line 3 lt 1 lc rgb '#C6DBEF' # 11 set style line 4 lt 1 lc rgb '#9ECAE1' # light blue 12 set style line 5 lt 1 lc rgb '#6BAED6' # 13 set style line 6 lt 1 lc rgb '#4292C6' # medium blue 14 set style line 7 lt 1 lc rgb '#2171B5' # 15 set style line 8 lt 1 lc rgb '#084594' # dark blue 16 17 # palette 18 set palette defined ( 0 '#F7FBFF',\ 19 1 '#DEEBF7',\ 20 2 '#C6DBEF',\ 21 3 '#9ECAE1',\ 22 4 '#6BAED6',\ 23 5 '#4292C6',\ 24 6 '#2171B5',\ 25 7 '#084594' ) 26