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 b74667e commit a984a10Copy full SHA for a984a10
src/bin/css_to_ts/colorOptions.ts
@@ -347,6 +347,7 @@ export const parseColorOptions = memoize((rawCssCode: string): ColorOption[] =>
347
348
return declarations
349
.filter(({ value }: any) => cssColorRegexp.test(value))
350
+ .filter(({ property }: any) => /-[0-9]+/.test(property))
351
.map(({ property }: any) => {
352
const cssVariableValue = getCssVariable(property);
353
0 commit comments