### Panda CSS Configuration for Park UI (TypeScript) Source: https://park-ui.com/docs/overview/introduction This code snippet shows how to configure Panda CSS with the Park UI preset. It includes settings for preflight, presets, included files, and the JSX framework. Ensure you have '@pandacss/dev' and '@park-ui/panda-preset' installed. ```typescript import { defineConfig } from '@pandacss/dev' import { createPreset } from '@park-ui/panda-preset' export default defineConfig({ preflight: true, presets: [ '@pandacss/preset-base', createPreset({ accentColor: 'neutral', grayColor: 'neutral', borderRadius: 'sm', }), ], include: ['./src/**/*.{js,jsx,ts,tsx,vue}'], jsxFramework: 'react', // or 'solid' or 'vue' outdir: 'styled-system', }) ``` -------------------------------- ### Configure Panda CSS with Park UI Preset Source: https://park-ui.com/docs/index This configuration sets up Panda CSS with the Park UI preset, defining essential styling aspects like preflight, presets, included files, and the JSX framework. It allows customization of accent color, gray color, and border-radius. The `jsxFramework` option should be set according to the project's framework (e.g., 'react', 'solid', 'vue'). ```typescript import { defineConfig } from '@pandacss/dev' import { createPreset } from '@park-ui/panda-preset' export default defineConfig({ preflight: true, presets: [ '@pandacss/preset-base', createPreset({ accentColor: 'neutral', grayColor: 'neutral', borderRadius: 'sm', }), ], include: ['./src/**/*.{js,jsx,ts,tsx,vue}'], jsxFramework: 'react', // or 'solid' or 'vue' outdir: 'styled-system', }) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.