How palettes are categorized in paletteer
mainPalettes in paletteer are organized into three main categories based on how they behave and how they are accessed:
- Discrete Fixed Width Palettes: These have a set number of colors that does not change regardless of the number of colors requested. Accessed via
paletteer_d(). - Discrete Dynamic Palettes: The colors in the palette depend on the number of colors requested. Accessed via
paletteer_dynamic(). - Continuous Palettes: These provide a smooth transition of color and can provide as many colors as needed. Accessed via
paletteer_c().
You can explore the available palettes using the data.frames palettes_c_names, palettes_d_names, and palettes_dynamic_names.