updated colors

adjusted text colors of sidebar tabs and header logo and username from black to dark green.
This commit is contained in:
2025-07-09 09:03:34 -07:00
parent 186e8baefc
commit bf9a9d8461
2 changed files with 10 additions and 10 deletions
+8 -8
View File
@@ -1,7 +1,7 @@
import { Box, Button } from "@chakra-ui/react"
import { Box, Button } from "@chakra-ui/react";
import { FaVolcano } from "react-icons/fa6";
import { createIcon } from "@chakra-ui/react";
import { CloseButton } from "@chakra-ui/react"
import { CloseButton } from "@chakra-ui/react";
import { useState } from "react"
// ICONS
@@ -69,12 +69,12 @@ export default function Sidebar () {
alignItems="start"
gap={4} padding={14}
>
<CloseButton size="xs" variant="subtle" position="relative" top="-12" left="-12"></CloseButton>
<Button fontSize="xl" variant="ghost"><PushPin /> Dashboard</Button>
<Button fontSize="xl" variant="ghost"><Globe fill="white" stroke="black" /> Global Map</Button>
<Button fontSize="xl" variant="ghost"><MapMarker fill="white" stroke="black"/> Regional Map</Button>
<Button fontSize="xl" variant="ghost"><FaVolcano /> Volcano</Button>
<Button fontSize="xl" variant="ghost"><Users fill="white" stroke="black" /> Admin</Button>
<CloseButton color="#19332D" bg="#EDF1F1" size="xs" variant="subtle" position="relative" top="-12" left="-12"></CloseButton>
<Button color="#19332D" _hover={{bg: "#EDF1F1"}} fontSize="xl" variant="ghost"><PushPin /> Dashboard</Button>
<Button color="#19332D" _hover={{bg: "#EDF1F1"}} fontSize="xl" variant="ghost"><Globe fill="white" stroke="black" /> Global Map</Button>
<Button color="#19332D" _hover={{bg: "#EDF1F1"}} fontSize="xl" variant="ghost"><MapMarker fill="white" stroke="black"/> Regional Map</Button>
<Button color="#19332D" _hover={{bg: "#EDF1F1"}} fontSize="xl" variant="ghost"><FaVolcano /> Volcano</Button>
<Button color="#19332D" _hover={{bg: "#EDF1F1"}} fontSize="xl" variant="ghost"><Users fill="white" stroke="black" /> Admin</Button>
</Box>
);
}