From 54888ed97899447974e564a77ee5e4d0e386596f Mon Sep 17 00:00:00 2001 From: Oliver Lewandowski <109145288+olewandowski1@users.noreply.github.com> Date: Fri, 25 Oct 2024 16:41:13 +0200 Subject: [PATCH] OM-322: add theme variables for landing (#152) --- src/helpers/theme.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/helpers/theme.js b/src/helpers/theme.js index 68b1231..84bcf52 100644 --- a/src/helpers/theme.js +++ b/src/helpers/theme.js @@ -224,6 +224,18 @@ const theme = createTheme({ justifyContent: "flex-end", }, }, + landing: { + palette: { + primary: '#3B6900', + secondary: '#F3DA00', + tertiary: '#539300', + mutedPrimary: 'rgba(45, 166, 4, 0.08)', + mutedSecondary: '#FFFBDA', + black: '#000000', + white: '#FFFFFF', + text: '#1E1E23', + }, + } }); export default theme;