vega-themes
Version:
Themes for stylized Vega and Vega-Lite visualizations.
31 lines (24 loc) • 459 B
text/typescript
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;