karsten-design-system 1.2.22 → 1.2.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -271,13 +271,13 @@ function Charts({ type, labels, datasets, title, stacked = false, horizontal = f
271
271
  scales: {
272
272
  x: {
273
273
  stacked: stacked,
274
- ticks: { color: isDarkMode ? '#fff' : '#495057' },
275
- grid: { color: isDarkMode ? '#fff' : '#ebedef' },
274
+ ticks: { color: isDarkMode ? '#ebedef' : '#495057' },
275
+ grid: { color: isDarkMode ? '#495057' : '#ebedef' },
276
276
  },
277
277
  y: {
278
278
  stacked: stacked,
279
- ticks: { color: isDarkMode ? '#fff' : '#495057' },
280
- grid: { color: isDarkMode ? '#fff' : '#ebedef' },
279
+ ticks: { color: isDarkMode ? '#ebedef' : '#495057' },
280
+ grid: { color: isDarkMode ? '#495057' : '#ebedef' },
281
281
  },
282
282
  },
283
283
  };