Fix Konsisten Warna Bg 4

This commit is contained in:
2026-03-25 17:15:07 +08:00
parent c6415c5aab
commit 3eb84921a1
6 changed files with 10 additions and 9 deletions

View File

@@ -16,6 +16,7 @@ export function SDGSCard({ title, score, image }: SDGSCardProps) {
p="md" p="md"
radius="xl" radius="xl"
withBorder withBorder
bg={dark ? "#1E293B" : "white"}
style={{ style={{
borderColor: dark ? "#334155" : "white", borderColor: dark ? "#334155" : "white",
boxShadow: "0 1px 3px 0 rgb(0 0 0 / 0.1)", boxShadow: "0 1px 3px 0 rgb(0 0 0 / 0.1)",

View File

@@ -259,7 +259,7 @@ const DemografiPekerjaan = () => {
/> />
<Bar <Bar
dataKey="total" dataKey="total"
fill="#1E3A5F" fill="#396aaaff"
radius={[8, 8, 0, 0]} radius={[8, 8, 0, 0]}
maxBarSize={40} maxBarSize={40}
/> />
@@ -325,7 +325,7 @@ const DemografiPekerjaan = () => {
/> />
<Bar <Bar
dataKey="total" dataKey="total"
fill="#1E3A5F" fill="#396aaaff"
radius={[0, 8, 8, 0]} radius={[0, 8, 8, 0]}
maxBarSize={30} maxBarSize={30}
/> />
@@ -663,12 +663,12 @@ const DemografiPekerjaan = () => {
/> />
<Bar <Bar
dataKey="value" dataKey="value"
fill="#1E3A5F" fill="#396aaaff"
radius={[0, 8, 8, 0]} radius={[0, 8, 8, 0]}
maxBarSize={40} maxBarSize={40}
> >
{sektorUnggulanData.map((entry, index) => ( {sektorUnggulanData.map((entry, index) => (
<Cell key={`cell-${index}`} fill="#1E3A5F" /> <Cell key={`cell-${index}`} fill="#396aaaff" />
))} ))}
</Bar> </Bar>
</BarChart> </BarChart>

View File

@@ -197,7 +197,7 @@ const JennaAnalytic = () => {
/> />
<Bar <Bar
dataKey="total" dataKey="total"
fill="#1E3A5F" fill="#396aaaff"
radius={[8, 8, 0, 0]} radius={[8, 8, 0, 0]}
maxBarSize={60} maxBarSize={60}
/> />

View File

@@ -312,7 +312,7 @@ const KeuanganAnggaran = () => {
/> />
<Bar <Bar
dataKey="amount" dataKey="amount"
fill="#1E3A5F" fill="#396aaaff"
radius={[0, 8, 8, 0]} radius={[0, 8, 8, 0]}
maxBarSize={30} maxBarSize={30}
/> />

View File

@@ -246,7 +246,7 @@ const PengaduanLayananPublik = () => {
<Line <Line
type="monotone" type="monotone"
dataKey="jumlah" dataKey="jumlah"
stroke="#1E3A5F" stroke="#396aaaff"
strokeWidth={2} strokeWidth={2}
dot={{ dot={{
fill: "#1E3A5F", fill: "#1E3A5F",
@@ -305,7 +305,7 @@ const PengaduanLayananPublik = () => {
borderRadius: "8px", borderRadius: "8px",
}} }}
/> />
<Bar dataKey="jumlah" fill="#1E3A5F" radius={[0, 4, 4, 0]} /> <Bar dataKey="jumlah" fill="#396aaaff" radius={[0, 4, 4, 0]} />
</BarChart> </BarChart>
</ResponsiveContainer> </ResponsiveContainer>
</Card> </Card>

View File

@@ -92,7 +92,7 @@ export const EventCalendar = ({ data }: EventCalendarProps) => {
</Text> </Text>
</Group> </Group>
<Group pl={36}> <Group pl={36}>
<Text size="sm" c={dark ? "dark.4" : "gray.6"}> <Text size="sm" c={dark ? "white" : "gray.6"}>
{event.tanggal} {event.tanggal}
</Text> </Text>
</Group> </Group>