feat(module): define neutral utilities (#3629)

Co-authored-by: Sébastien Chopin <atinux@gmail.com>
This commit is contained in:
Benjamin Canac
2025-04-21 15:20:53 +02:00
committed by GitHub
parent 2b315fd855
commit d49e0dadee
238 changed files with 14319 additions and 14046 deletions

View File

@@ -3,12 +3,12 @@ export default {
root: '',
wrapper: '',
labelWrapper: 'flex content-center items-center justify-between',
label: 'block font-medium text-(--ui-text)',
label: 'block font-medium text-default',
container: 'mt-1 relative',
description: 'text-(--ui-text-muted)',
error: 'mt-2 text-(--ui-error)',
hint: 'text-(--ui-text-muted)',
help: 'mt-2 text-(--ui-text-muted)'
description: 'text-muted',
error: 'mt-2 text-error',
hint: 'text-muted',
help: 'mt-2 text-muted'
},
variants: {
size: {
@@ -20,7 +20,7 @@ export default {
},
required: {
true: {
label: `after:content-['*'] after:ms-0.5 after:text-(--ui-error)`
label: `after:content-['*'] after:ms-0.5 after:text-error`
}
}
},