mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-10 14:46:54 +08:00
⚒️ Fix theme.
This commit is contained in:
parent
920798e653
commit
457a6c64f7
@ -21,8 +21,8 @@ const theme = extendTheme(
|
|||||||
dark: "#000000",
|
dark: "#000000",
|
||||||
},
|
},
|
||||||
brand: {
|
brand: {
|
||||||
purple: "#4343E5"
|
purple: "#4343E5",
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
fonts: {
|
fonts: {
|
||||||
body: "Inter-Regular, sans-serif",
|
body: "Inter-Regular, sans-serif",
|
||||||
@ -33,7 +33,11 @@ const theme = extendTheme(
|
|||||||
"html, body": {
|
"html, body": {
|
||||||
height: "100%",
|
height: "100%",
|
||||||
maxHeight: "100vh",
|
maxHeight: "100vh",
|
||||||
backgroundColor: mode("bg.light", "bg.dark")(props),
|
bgGradient: mode(
|
||||||
|
"radial(circle at 1px 1px, #C5C5C5 1px, bg.light 0)",
|
||||||
|
"radial(circle at 1px 1px, #212121 1px, bg.dark 0)"
|
||||||
|
)(props),
|
||||||
|
backgroundSize: "40px 40px",
|
||||||
fontSize: "14px",
|
fontSize: "14px",
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
|
Loading…
Reference in New Issue
Block a user