Skip to content

Commit ce40578

Browse files
authored
Use prominent color for walkthrough step title (microsoft#166745)
1 parent 6b279eb commit ce40578

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@ export const welcomePageTileHoverBackground = registerColor('welcomePage.tileHov
1414

1515
export const welcomePageProgressBackground = registerColor('welcomePage.progress.background', { light: inputBackground, dark: inputBackground, hcDark: inputBackground, hcLight: inputBackground }, localize('welcomePage.progress.background', 'Foreground color for the Welcome page progress bars.'));
1616
export const welcomePageProgressForeground = registerColor('welcomePage.progress.foreground', { light: textLinkForeground, dark: textLinkForeground, hcDark: textLinkForeground, hcLight: textLinkForeground }, localize('welcomePage.progress.foreground', 'Background color for the Welcome page progress bars.'));
17+
18+
export const walkthroughStepTitleForeground = registerColor('walkthrough.stepTitle.foreground', { light: '#000000', dark: '#ffffff', hcDark: null, hcLight: null }, localize('walkthrough.stepTitle.foreground', 'Foreground color of the heading of each walkthrough step'));

src/vs/workbench/contrib/welcomeGettingStarted/browser/media/gettingStarted.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,10 @@
411411
border: 1px solid var(--vscode-editorWidget-border);
412412
}
413413

414+
.monaco-workbench .part.editor>.content .gettingStartedContainer .gettingStartedSlideDetails .getting-started-step.expanded h3 {
415+
color: var(--vscode-walkthrough-stepTitle-foreground);
416+
}
417+
414418
.monaco-workbench .part.editor>.content .gettingStartedContainer .gettingStartedSlideDetails .getting-started-step.expanded>.codicon {
415419
cursor: pointer !important;
416420
}

0 commit comments

Comments
 (0)