docs(migration): invalid classes

This commit is contained in:
Benjamin Canac
2025-03-03 18:40:57 +01:00
parent 52a92c658f
commit 145fce1b30

View File

@@ -195,10 +195,10 @@ You can also use the new [design tokens](/getting-started/theme#neutral-palette)
```diff
<template>
- <p class="text-gray-500 dark:text-gray-400" />
+ <p class="text-(--ui-text-muted) dark:text-(--ui-text-muted)" />
+ <p class="text-(--ui-text-muted)" />
- <p class="text-gray-900 dark:text-white" />
+ <p class="text-(--ui-text-highlighted) dark:text-(--ui-text-highlighted)" />
+ <p class="text-(--ui-text-highlighted)" />
</template>
```
::