Skip to content

Commit bfb0275

Browse files
committed
improve color
1 parent 28ac9a1 commit bfb0275

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/editor/contrib/folding/foldingModel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export class FoldingModel {
9292
endColumn: maxColumn
9393
};
9494
newEditorDecorations.push({ range: decorationRange, options: this._decorationProvider.getDecorationOption(isCollapsed) });
95-
});
95+
};
9696
let i = 0;
9797
let nextCollapsed = () => {
9898
while (i < this._regions.length) {
@@ -358,7 +358,7 @@ export function setCollapseStateForType(foldingModel: FoldingModel, type: string
358358
foldingModel.toggleCollapseState(toToggle);
359359
}
360360

361-
export const foldBackgroundBackground = registerColor('editor.foldBackground', { light: darken(editorSelectionBackground, 0.6), dark: lighten(editorSelectionBackground, 0.6), hc: null }, nls.localize('editorSelectionBackground', "Color of the editor selection."));
361+
export const foldBackgroundBackground = registerColor('editor.foldBackground', { light: lighten(editorSelectionBackground, 0.5), dark: darken(editorSelectionBackground, 0.5), hc: null }, nls.localize('editorSelectionBackground', "Color of the editor selection."));
362362

363363
registerThemingParticipant((theme, collector) => {
364364
const foldBackground = theme.getColor(foldBackgroundBackground);

0 commit comments

Comments
 (0)