File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 --error-color : hsl (0 , 85% , 62% );
55 --foreground-color : hsl (0 , 0% , 0% );
66 --header-foreground-color : hsl (0 , 0% , 0% );
7+ --info-color : hsl (212 , 100% , 61% );
78 --primary-color : hsl (189 , 100% , 63% );
89 --shadow-color : hsla (0 , 0% , 27% , 0.239 );
910 --scrollbar-color : hsla (0 , 0% , 47% , 0.4 );
@@ -124,6 +125,10 @@ main {
124125 margin-left : 0.5rem ;
125126}
126127
128+ .problem .codicon-info {
129+ color : var (--info-color );
130+ }
131+
127132.problem .codicon-warning {
128133 color : var (--warning-color );
129134}
Original file line number Diff line number Diff line change @@ -260,7 +260,11 @@ editor.onDidChangeMarkers(([resource]) => {
260260 wrapper . classList . add ( 'problem' )
261261 codicon . classList . add (
262262 'codicon' ,
263- marker . severity === MarkerSeverity . Warning ? 'codicon-warning' : 'codicon-error'
263+ marker . severity === MarkerSeverity . Info
264+ ? 'codicon-info'
265+ : marker . severity === MarkerSeverity . Warning
266+ ? 'codicon-warning'
267+ : 'codicon-error'
264268 )
265269 text . classList . add ( 'problem-text' )
266270 text . textContent = marker . message
You can’t perform that action at this time.
0 commit comments