Matlab Graph Safe Colors for Web, Presentation and Publications Examples
Good Colors to Use Darker
Nice darker light colors to use in matlab.
blue = [57 106 177]./255;
green = [62 150 81]./255;
brown = [146 36 40]./255;
purple = [107 76 154]./255;
cl_colors = {blue, red, black, ...
cl_str_clr_names = ["blue", "red", "black", "green", "brown", "purple"];
for it_color=1:length(cl_colors)
fill(x, y, cl_colors{it_color});
st_text = [cl_str_clr_names(it_color) num2str(round(cl_colors{it_color}*255))];
hText = text(.10,.55, st_text);
Good Colors to Use Lighter
Nice ligher colors to use in matlab.
blue = [114 147 203]./255;
black = [128 133 133]./255;
green = [132 186 91]./255;
brown = [171 104 87]./255;
purple = [144 103 167]./255;
cl_colors = {blue, red, black, ...
cl_str_clr_names = ["blue", "red", "black", "green", "brown", "purple"];
for it_color=1:length(cl_colors)
fill(x, y, cl_colors{it_color});
st_text = [cl_str_clr_names(it_color) num2str(round(cl_colors{it_color}*255))];
hText = text(.10,.55, st_text);
Matlab has a graphical tool for picking color
Enter uisetcolor pick color from new window and color values will appear uisetcolor
Picked Color use
plot(x,y,'Color',[.61 .51 .74]);
'MarkerEdgeColor', [.61 .51 .74], 'MarkerFaceAlpha', 0.1, ...
'MarkerFaceColor', [.61 .51 .74], 'MarkerEdgeAlpha', 0.1);