Add light theme

This commit is contained in:
2024-05-06 18:18:01 +01:00
parent e7b178279e
commit 0c264d8cc7
7 changed files with 100 additions and 7 deletions

View File

@@ -22,7 +22,7 @@ export const CartesianGrid = () => (
key={index}
y1={Math.max(1, Math.min(height - 1, (height * index) / 4))}
y2={Math.max(1, Math.min(height - 1, (height * index) / 4))}
stroke='var(--color-neutral1)'
stroke='var(--color-background1)'
strokeWidth={1}
/>
))}

View File

@@ -1,5 +1,5 @@
.chart {
color: var(--color-neutral2);
color: var(--color-text-subdued);
display: grid;
font-size: 16px;
gap: 4px;