UNPKG

vega-themes

Version:

Themes for stylized Vega and Vega-Lite visualizations.

31 lines (24 loc) 459 B
import {Config} from './config'; const lightColor = '#fff'; const medColor = '#888'; const darkTheme: Config = { background: '#333', title: { color: lightColor, subtitleColor: lightColor }, style: { 'guide-label': { fill: lightColor, }, 'guide-title': { fill: lightColor, }, }, axis: { domainColor: lightColor, gridColor: medColor, tickColor: lightColor, }, }; export default darkTheme;