We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With version 0.43 createPreset has changed to use pre-generated color palettes instead of just names:
createPreset
import cyan from '@park-ui/panda-preset/colors/cyan' import slate from '@park-ui/panda-preset/colors/slate' export default defineConfig({ preflight: true, presets: [ '@pandacss/preset-base', createPreset({ accentColor: cyan, grayColor: slate, radius: 'lg' }), ], ...
After that, these CSS vars for accent colors are not generated by Panda anymore:
--colors-accent-1: var(--colors-cyan-light-1); --colors-accent-2: var(--colors-cyan-light-2); --colors-accent-3: var(--colors-cyan-light-3); --colors-accent-4: var(--colors-cyan-light-4); --colors-accent-5: var(--colors-cyan-light-5); --colors-accent-6: var(--colors-cyan-light-6); --colors-accent-7: var(--colors-cyan-light-7); --colors-accent-8: var(--colors-cyan-light-8); --colors-accent-9: var(--colors-cyan-light-9);
It's even on a park-ui.com website:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With version 0.43
createPreset
has changed to use pre-generated color palettes instead of just names:After that, these CSS vars for accent colors are not generated by Panda anymore:
It's even on a park-ui.com website:
The text was updated successfully, but these errors were encountered: