17 lines
345 B
TypeScript
17 lines
345 B
TypeScript
export const chartTheme = {
|
|
text: "#cbd5e1",
|
|
subText: "#94a3b8",
|
|
line: "#22d3ee",
|
|
bar: "#8b5cf6",
|
|
pieA: "#22d3ee",
|
|
pieB: "#8b5cf6",
|
|
pieC: "#34d399",
|
|
pieD: "#f59e0b",
|
|
split: "rgba(148,163,184,.14)",
|
|
axis: "#94a3b8",
|
|
};
|
|
|
|
export function baseGrid() {
|
|
return { left: 20, right: 20, top: 40, bottom: 20, containLabel: true };
|
|
}
|