You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import { createPreset } from "@park-ui/panda-preset";
|
|
|
|
import { defineConfig } from "@pandacss/dev";
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
// Whether to use css reset
|
|
|
|
preflight: true,
|
|
|
|
|
|
|
|
presets: [
|
|
|
|
"@pandacss/preset-base",
|
|
|
|
createPreset({
|
|
|
|
accentColor: "red",
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
|
|
|
|
// Where to look for your css declarations
|
|
|
|
include: ["./src/**/*.{js,jsx,ts,tsx}", "./pages/**/*.{js,jsx,ts,tsx}"],
|
|
|
|
|
|
|
|
// Files to exclude
|
|
|
|
exclude: [],
|
|
|
|
|
|
|
|
// Useful for theme customization
|
|
|
|
theme: {},
|
|
|
|
|
|
|
|
// The output directory for your css system
|
|
|
|
outdir: "styled-system",
|
|
|
|
|
|
|
|
jsxFramework: "react",
|
|
|
|
});
|