@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
23 lines (21 loc) • 535 B
JavaScript
const require_config = require('../core/system/config.cjs');
//#region src/theme/config.ts
/**
* The default config of Yamada UI.
*
* @see https://yamada-ui.com/docs/theming/configuration/overview
*/
const config = require_config.defineConfig({
css: { varPrefix: "ui" },
breakpoint: {
direction: "down",
identifier: "@media screen"
},
defaultColorMode: "light",
defaultThemeScheme: "base",
notice: { duration: 5e3 },
theme: { responsive: true }
});
//#endregion
exports.config = config;
//# sourceMappingURL=config.cjs.map