Themes

If you don't want to define your own colorPalette, choose a pre-defined palette in theme.palette property. ApexCharts has 10+ built in color palettes to choose from.
To apply palette globally to all charts, set Apex.theme.palette property.

Setting a colorPalette

Setting a palette can be done by.

theme: {
  palette: 'palette1' // upto palette10
}

Setting a monochrome theme

If you want to use a single color and it's shade, use the theme.monochrome property.

theme: {
  monochrome: {
    enabled: true,
    color: '#255aee',
    shadeTo: 'light',
    shadeIntensity: 0.65
  }
}

Themes Demo