Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
chore: colors
Browse files Browse the repository at this point in the history
  • Loading branch information
LuizAsFight committed Feb 22, 2024
1 parent 090ff5d commit 89b18d9
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions packages/app/src/systems/Core/components/DeprecatedAlert.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import { Box, Flex, Icon, Link, Text } from '@fuel-ui/react';
import { useTheme } from '~/systems/Settings';

export function DeprecatedAlert() {
const theme = useTheme();
const colors = {
backgroundColor: theme.theme === 'dark' ? '#2a2008' : '#fffab8',
color: theme.theme === 'dark' ? '#f5e147' : '#a06e00',
backgroundColor: '#fffab8',
color: '#a06e00',
};

return (
Expand Down Expand Up @@ -43,7 +41,7 @@ export function DeprecatedAlert() {
<Link
href="https://app.fuel.network"
isExternal
color="$accent11"
css={{ color: '#00894f' }}
>
https://app.fuel.network
</Link>
Expand Down

0 comments on commit 89b18d9

Please sign in to comment.