-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
type/enhancementFeatures or improvements to existing featuresFeatures or improvements to existing features
Milestone
Description
VS Code issue: microsoft/vscode#149867
Lines 96 to 110 in 87bc48f
| export function toColor(css: string): IColor { | |
| switch (css.length) { | |
| case 7: // #rrggbb | |
| return { | |
| css, | |
| rgba: (parseInt(css.slice(1), 16) << 8 | 0xFF) >>> 0 | |
| }; | |
| case 9: // #rrggbbaa | |
| return { | |
| css, | |
| rgba: parseInt(css.slice(1), 16) >>> 0 | |
| }; | |
| } | |
| throw new Error('css.toColor: Unsupported css format'); | |
| } |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
type/enhancementFeatures or improvements to existing featuresFeatures or improvements to existing features