Caceresenzo commented on issue #17391:
URL: https://github.com/apache/echarts/issues/17391#issuecomment-1378655527
They seems to have changed the way they store the themes, and so the theme
builder is not working anymore...
In the meantime, you can "update" the color by hand:
```js
import dark from 'echarts/lib/theme/dark';
dark.legend.textStyle.color = "#ffffff";
```
Or you can register a new theme, and specify the correct color:
```js
echarts.registerTheme("xdark", {
legend: {
textStyle: {
color: "#ffffff"
}
},
});
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]