18 lines
277 B
TypeScript
18 lines
277 B
TypeScript
import {
|
|
defaultConfig,
|
|
createSystem,
|
|
defineConfig,
|
|
defineTextStyles,
|
|
} from "@chakra-ui/react";
|
|
|
|
const config = defineConfig({
|
|
globalCss: {
|
|
"*": {
|
|
focusRing: "none",
|
|
color: "#FFF",
|
|
},
|
|
},
|
|
});
|
|
|
|
export default createSystem(defaultConfig, config);
|