ApexChart.js color is fixed to Blue (I think it's Lumo?)

Hi John,

The demo linked on that page (https://appreciated-collection.herokuapp.com/apexcharts/) is all blue.

You can set the chart colors using --vaadin-charts-color-0, --vaadin-charts-color-1 and so on.

Example

<dom-module id="my-chart" theme-for="vaadin-chart">
  <template>
    <style include="vaadin-chart-default-theme">
      :host {
        --vaadin-charts-color-0: var(--lumo-primary-color);
        --vaadin-charts-color-1: var(--lumo-error-color);
	  }
    </style>
  </template>
</dom-module>