ApexCharts:更改 zoom/pan 图标的默认蓝色

ApexCharts: change the default blue color of the zoom/pan icons

如何更改图表右上角 zoom/pan 图标的默认蓝色? https://i.stack.imgur.com/Ob2Jf.png

您可以使用 CSS

更改它
.apexcharts-zoom-icon.apexcharts-selected svg {
  fill: #68e397 !important;
}

.apexcharts-pan-icon.apexcharts-selected svg {
  stroke: #68e397 !important;
}