Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/tool/color.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,13 @@ export function parse(colorStr: string, rgbaArr?: number[]): number[] {
return rgbaArr;
}

// check for the <color> syntax,
// https://drafts.csswg.org/css-color/#color-syntax
if (/\(\S*\s\S*\s\S*/.test(colorStr)) {
colorStr = colorStr.replace(/\s\/\s/, ' ');
str = colorStr.replace(/ /g, ',');
}

// supports the forms #rgb, #rrggbb, #rgba, #rrggbbaa
// #rrggbbaa(use the last pair of digits as alpha)
// see https://drafts.csswg.org/css-color/#hex-notation
Expand Down