diff --git a/App.tsx b/App.tsx index ca70bff..fbe0ee1 100644 --- a/App.tsx +++ b/App.tsx @@ -10,7 +10,7 @@ export default function App() { - Restyle Text + Restyle Text diff --git a/src/themes/Theme.tsx b/src/themes/Theme.tsx index 8419ba2..2a59e2a 100644 --- a/src/themes/Theme.tsx +++ b/src/themes/Theme.tsx @@ -10,13 +10,18 @@ const palette = { greenDark: "#0A906E", black: "#0B0B0B", - white: "#F0F2F3", + white: "#FFFFFF", + green: "#00875A", + lightGray: "#F4F5F7", + gray: "#747E98", + yellow: "#F4C44A", }; const theme = createTheme({ colors: { - mainBackground: palette.white, - cardPrimaryBackground: palette.purplePrimary, + primary: palette.white, + secondary: palette.green, + tertiary: palette.yellow, black: palette.black, }, spacing: { diff --git a/src/themes/Variants.tsx b/src/themes/Variants.tsx index c344bd4..6d03f47 100644 --- a/src/themes/Variants.tsx +++ b/src/themes/Variants.tsx @@ -8,6 +8,6 @@ export const cardVariants = createVariant({ phone: "s", tablet: "m", }, - backgroundColor: "cardPrimaryBackground", + backgroundColor: "secondary", }, });