Commit c4b9fd90 by G

add some spacing option up to 240 and minor variants update

parent 8475014e
...@@ -33,6 +33,17 @@ const theme = createTheme({ ...@@ -33,6 +33,17 @@ const theme = createTheme({
m: 16, m: 16,
l: 24, l: 24,
xl: 40, 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%", // full: "100%",
}, },
breakpoints: { breakpoints: {
...@@ -57,6 +68,12 @@ const theme = createTheme({ ...@@ -57,6 +68,12 @@ const theme = createTheme({
secondary: { secondary: {
color: "secondary", color: "secondary",
}, },
black: {
color: "black",
},
white: {
color: "white",
},
}, },
cardVariants: { cardVariants: {
defaults: { defaults: {
...@@ -94,6 +111,10 @@ const theme = createTheme({ ...@@ -94,6 +111,10 @@ const theme = createTheme({
backgroundColor: "primary", backgroundColor: "primary",
color: "secondary", color: "secondary",
}, },
lightGray: {
backgroundColor: "lightGray",
color: "black",
},
}, },
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment