Skip to content

Commit

Permalink
Support the "Inline CSS Color" extension
Browse files Browse the repository at this point in the history
  • Loading branch information
wangweixuan committed Feb 3, 2024
1 parent 5a19fd6 commit 4358281
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/workbench.ts
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,18 @@ function generateWorkbench(
'charts.yellow': INHERIT,

// Ports
'ports.iconRunningProcessForeground': INHERIT
'ports.iconRunningProcessForeground': INHERIT,

// For extension https://marketplace.visualstudio.com/items?itemName=outofsync42.inline-css-color
// Workaround for https://github.com/textmate/html.tmbundle/issues/88
'inline.css.propertyName': palette.mono1,
'inline.css.punctuation': palette.mono1,
'inline.css.supportFunction': palette.hue1,
'inline.css.valueConstant': palette.hue6,
'inline.css.valueNumeric': palette.hue6,
'inline.css.valueNumericUnit': palette.hue6,
'inline.css.keywordImportant': palette.hue3,
'inline.css.string': palette.hue4
}
}

Expand Down

0 comments on commit 4358281

Please sign in to comment.