Skip to content

Commit

Permalink
refactor: page header colors
Browse files Browse the repository at this point in the history
  • Loading branch information
gozarman committed Apr 20, 2024
1 parent 4be0742 commit 48e65cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions app/dashboard/chakra.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ export const theme = extendTheme({
_dark: "#EAECF0",
},
"text-inactive": {
default: "#EAEAEA",
_dark: "#475467",
default: "#475467",
_dark: "#EAEAEA",
},
"text-nav-inactive": {
default: "#737378",
Expand Down Expand Up @@ -89,7 +89,6 @@ export const theme = extendTheme({
},
},
colors: {
border: "#d2d2d4",
primary: {
50: "#9cb7f2",
100: "#88a9ef",
Expand Down
4 changes: 2 additions & 2 deletions app/dashboard/src/components/layouts/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ export const Header: FC<HeaderProps> = ({ pageName }) => {
pb="4"
gap="1"
>
<Text as="h1" fontWeight="semibold" fontSize="2xl">
<Text color="text" as="h1" fontWeight="semibold" fontSize="2xl">
{t(pageName + ".title")}
</Text>
<Text color="GrayText">{t(pageName + ".description")}</Text>
<Text color="text-inactive">{t(pageName + ".description")}</Text>
</VStack>
);
};

0 comments on commit 48e65cf

Please sign in to comment.