UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

5 lines (4 loc) 322 B
// Cyan sequential gradient palette based on the color scheme export const cyanPaletteLight = ['#CFE9E8', '#A3DAD8', '#7ED0CE', '#44BDBA', '#299896', '#137370', '#0E5A58', '#073938']; export const cyanPaletteDark = cyanPaletteLight; export const cyanPalette = mode => mode === 'dark' ? cyanPaletteDark : cyanPaletteLight;