We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 978c54e commit 4663ef3Copy full SHA for 4663ef3
src/options.js
@@ -273,6 +273,7 @@ export function isColor(value) {
273
return value === "none"
274
|| value === "currentcolor"
275
|| (value.startsWith("url(") && value.endsWith(")")) // <funciri>, e.g. pattern or gradient
276
+ || (value.startsWith("var(") && value.endsWith(")")) // CSS variable
277
|| color(value) !== null;
278
}
279
0 commit comments