vega-themes
Version:
Themes for stylized Vega and Vega-Lite visualizations.
35 lines (27 loc) • 497 B
text/typescript
import {Config} from './config.js';
const lightColor = '#fff';
const medColor = '#888';
const darkTheme: Config = {
background: '#333',
view: {
stroke: medColor,
},
title: {
color: lightColor,
subtitleColor: lightColor,
},
style: {
'guide-label': {
fill: lightColor,
},
'guide-title': {
fill: lightColor,
},
},
axis: {
domainColor: lightColor,
gridColor: medColor,
tickColor: lightColor,
},
};
export default darkTheme;