From c4b9fd9083df3623936b416d6bb0cfda9311ba41 Mon Sep 17 00:00:00 2001 From: G Date: Wed, 24 Apr 2024 23:43:59 +0000 Subject: [PATCH] add some spacing option up to 240 and minor variants update --- src/themes/Theme.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/themes/Theme.tsx b/src/themes/Theme.tsx index e524aa4..7be646b 100644 --- a/src/themes/Theme.tsx +++ b/src/themes/Theme.tsx @@ -33,6 +33,17 @@ const theme = createTheme({ m: 16, l: 24, xl: 40, + x64: 64, + x72: 72, + x80: 80, + x100: 100, + x120: 120, + x140: 140, + x160: 160, + x180: 180, + x200: 200, + x220: 220, + x240: 240, // full: "100%", }, breakpoints: { @@ -57,6 +68,12 @@ const theme = createTheme({ secondary: { color: "secondary", }, + black: { + color: "black", + }, + white: { + color: "white", + }, }, cardVariants: { defaults: { @@ -94,6 +111,10 @@ const theme = createTheme({ backgroundColor: "primary", color: "secondary", }, + lightGray: { + backgroundColor: "lightGray", + color: "black", + }, }, }); -- libgit2 0.27.1