@antv/t8
Version:
T8 is a text visualization solution for unstructured data within the AntV technology stack, and it is a declarative JSON Schema syntax that can be used to describe the content of data interpretation reports.
40 lines (37 loc) • 1.25 kB
JavaScript
;
var presetLightColors = {
colorBase: 'rgba(0, 0, 0, 0.65)',
colorEntityBase: 'rgba(0, 0, 0, 0.65)',
colorHeadingBase: 'rgba(0, 0, 0, 0.85)',
colorPositive: '#FA541C',
colorNegative: '#13A8A8',
colorConclusion: '#1F0352',
colorDimensionValue: 'rgba(0, 0, 0, 0.88)',
colorMetricName: 'rgba(0, 0, 0, 0.88)',
colorMetricValue: '#1677FF',
colorOtherValue: 'rgba(0, 0, 0, 0.88)',
colorProportionShadow: '#CDDDFD',
colorProportionFill: '#3471F9',
colorLineStroke: '#5B8FF9',
};
var presetDarkColors = {
colorBase: 'rgba(255, 255, 255, 0.65)',
colorEntityBase: 'rgba(255, 255, 255, 0.65)',
colorHeadingBase: 'rgba(255, 255, 255, 0.85)',
colorPositive: '#FA541C',
colorNegative: '#13A8A8',
colorConclusion: '#D8C3F3',
colorDimensionValue: 'rgba(255, 255, 255, 0.88)',
colorMetricName: 'rgba(255, 255, 255, 0.88)',
colorMetricValue: '#4B91FF',
colorOtherValue: 'rgba(255, 255, 255, 0.88)',
colorProportionShadow: '#CDDDFD',
colorProportionFill: '#3471F9',
colorLineStroke: '#5B8FF9',
};
var presetTheme = {
light: presetLightColors,
dark: presetDarkColors,
};
exports.presetTheme = presetTheme;
//# sourceMappingURL=theme.js.map