@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.
27 lines • 786 B
TypeScript
export declare const baseSeedToken: {
readonly fontFamily: "PingFangSC, sans-serif";
readonly borderColor: "rgb(199, 199, 199)";
readonly fontSize: 14;
readonly lineHeight: 24;
/**
* if pages use small and normal size together, rem will not work.
* so we use fontSizeMultiple to calculate the fontSize instead of rem.
*/
readonly fontSizeMultiples: {
readonly h1: 2;
readonly h2: 1.72;
readonly h3: 1.4;
readonly h4: 1.15;
readonly h5: 1.08;
readonly h6: 1.08;
};
readonly lineHeightMultiples: {
readonly h1: 1.5;
readonly h2: 1.3;
readonly h3: 1.15;
readonly h4: 1;
readonly h5: 1;
readonly h6: 1;
};
};
//# sourceMappingURL=base.d.ts.map