🎨(frontend) replace hardcoded hex values with design tokens

Clean up fast-shipped features that broke design system by using proper
primary/semantic tokens instead of hardcoded colors. Enables better theme
customization for all implementations.
This commit is contained in:
lebaudantoine
2025-06-06 16:40:26 +02:00
committed by aleb_the_flash
parent 260eab23be
commit 1b9af5bf6d
19 changed files with 77 additions and 48 deletions

View File

@@ -315,6 +315,10 @@ const config: Config = {
'subtle-text': { value: '{colors.red.700}' },
...pandaPreset.theme.tokens.colors.red,
},
alert: {
DEFAULT: { value: '{colors.blue.700}' },
notification: { value: '{colors.red.600}' },
},
success: {
DEFAULT: { value: '{colors.green.700}' },
hover: { value: '{colors.green.800}' },