UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

5 lines (4 loc) 336 B
// Yellow sequential gradient palette based on the color scheme export const yellowPaletteLight = ['#FBEFD6', '#F5DEB0', '#F3CD80', '#FAC14F', '#FFB219', '#EF9801', '#DA7D0B', '#AB6208']; export const yellowPaletteDark = yellowPaletteLight; export const yellowPalette = mode => mode === 'dark' ? yellowPaletteDark : yellowPaletteLight;