UNPKG

@ygor-ui/presets

Version:

Panda CSS presets for Ark UI components

27 lines (24 loc) 655 B
import { definePreset } from '@pandacss/dev' import type { Preset } from '@pandacss/types' import { conditions } from './conditions' import { globalCss } from './global-css' import { keyframes } from './theme/keyframes' import { recipes, slotRecipes } from './theme/recipes' import { semanticTokens } from './theme/semantic-tokens' import { textStyles } from './theme/text-styles' import { tokens } from './theme/tokens' const preset: Preset = definePreset({ theme: { extend: { keyframes, recipes, semanticTokens, slotRecipes, textStyles, tokens, }, }, conditions, globalCss, }) export default preset