chartist icon indicating copy to clipboard operation
chartist copied to clipboard

Support for a dark theme

Open BasilaryGroup opened this issue 5 years ago • 1 comments

This is one of our client's top requests, a dark theme. We allow our clients to switch between dark and light themes. The dark theme is the most popular for our field users.

Is this feature in the works? Is there a way that I can implement a dark theme?

BasilaryGroup avatar Jun 21 '20 16:06 BasilaryGroup

You can use CSS. Stylus example:

.ct-chart
	background #333

.ct-grid
	stroke rgba(255, 255, 255, .2)

.ct-label
	fill rgba(255, 255, 255, 1)
	color rgba(255, 255, 255, 1)

ile avatar Feb 24 '21 04:02 ile