chore(css): ensure css are not using direct colors

This commit is contained in:
Edouard Vanbelle
2026-04-13 17:29:53 +02:00
parent 37ffa85ab7
commit 11973cae2a
2 changed files with 38 additions and 1 deletions
+27
View File
@@ -0,0 +1,27 @@
{
"rules": {
"color-no-hex": true,
"color-named": "never",
"function-disallowed-list": ["rgb", "rgba", "hsl", "hsla", "hwb", "oklch", "oklab"],
"selector-disallowed-list": ["/\\[data-theme/"]
},
"overrides": [
{
"files": ["**/variables.css"],
"rules": {
"color-no-hex": null,
"color-named": null,
"function-disallowed-list": null
}
},
{
"files": ["**/themes/dark.css"],
"rules": {
"color-no-hex": null,
"color-named": null,
"function-disallowed-list": null,
"selector-disallowed-list": null
}
}
]
}