initial framework

This commit is contained in:
2026-02-11 21:05:26 +00:00
parent 1df6c91109
commit f318513b2f
17 changed files with 1754 additions and 63 deletions

17
theme.ts Normal file
View File

@@ -0,0 +1,17 @@
import {
defaultConfig,
createSystem,
defineConfig,
defineTextStyles,
} from "@chakra-ui/react";
const config = defineConfig({
globalCss: {
"*": {
focusRing: "none",
color: "#FFF",
},
},
});
export default createSystem(defaultConfig, config);