Creates the colormaps_list/COLORMAPS_LIST_*.md files using
the Colormaps_info class.
program colormaps_list use forcolormap, only: cmap_info implicit none ! Write colormap information to a file call cmap_info%write(gradient='Sequential', file_name='colormaps_list/COLORMAPS_LIST_SEQ.md', verbose=4) call cmap_info%write(gradient='Multi-Sequential', file_name='colormaps_list/COLORMAPS_LIST_MSQ.md', verbose=4) call cmap_info%write(gradient='Diverging', file_name='colormaps_list/COLORMAPS_LIST_DIV.md', verbose=4) call cmap_info%write(gradient='Categorical', file_name='colormaps_list/COLORMAPS_LIST_CAT.md', verbose=4) call cmap_info%write(gradient='Cyclic', file_name='colormaps_list/COLORMAPS_LIST_CYC.md', verbose=4) end program colormaps_list