UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

5 lines (4 loc) 316 B
// Red sequential gradient palette based on the color scheme export const redPaletteLight = ['#FAE0E0', '#F7C0BF', '#F3A2A0', '#EF5350', '#E53935', '#DC2B27', '#860B08', '#560503 ']; export const redPaletteDark = redPaletteLight; export const redPalette = mode => mode === 'dark' ? redPaletteDark : redPaletteLight;