From a9a2e0ea7d96fc458228445cf607578afbd87f57 Mon Sep 17 00:00:00 2001 From: G Date: Wed, 24 Apr 2024 16:17:17 +0000 Subject: [PATCH] add the colors most likely to be used in the theme. kept the other default for now. --- App.tsx | 2 +- src/themes/Theme.tsx | 11 ++++++++--- src/themes/Variants.tsx | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) 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", }, }); -- libgit2 0.27.1