Fix Konsisten Warna Bg

This commit is contained in:
2026-03-25 16:46:59 +08:00
parent 5c09e7a0be
commit 366c08fbaa
13 changed files with 44 additions and 42 deletions

View File

@@ -43,7 +43,7 @@ const SummaryCard = ({
radius="xl"
withBorder
shadow="sm"
bg={dark ? "#141D34" : "white"}
bg={dark ? "#1E293B" : "white"}
style={{ borderColor: dark ? "#141D34" : "#e5e7eb" }}
>
<Group justify="space-between" align="center">
@@ -54,12 +54,12 @@ const SummaryCard = ({
<Text
size="xl"
fw={700}
c={highlight ? "red" : dark ? "dark.0" : "#1e3a5f"}
c={highlight ? "red" : dark ? "white" : "#1e3a5f"}
>
{value}
</Text>
{subtitle && (
<Text size="xs" c={dark ? "dark.4" : "gray.6"}>
<Text size="xs" c={dark ? "white" : "gray.6"}>
{subtitle}
</Text>
)}