Skip to content

Commit e8d2544

Browse files
Mike Niklesakosyakov
Mike Nikles
authored andcommitted
Use the kumquat brand color for links.
1 parent 021f9bd commit e8d2544

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

extensions/theme-defaults/themes/gitpod-dark-color-theme.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
"minimapSlider.activeBackground": "#44403C",
2424
"tab.inactiveBackground": "#1C1917",
2525
"editor.selectionBackground": "#A35800",
26-
"editor.inactiveSelectionBackground": "#7A4200"
26+
"editor.inactiveSelectionBackground": "#7A4200",
27+
"textLink.foreground": "#ffb45b",
28+
"textLink.activeForeground": "#ff8a00"
2729
}
2830
}

extensions/theme-defaults/themes/gitpod-light-color-theme.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
"minimapSlider.activeBackground": "#F9F9F9",
2424
"tab.inactiveBackground": "#F9F9F9",
2525
"editor.selectionBackground": "#FFE4BC",
26-
"editor.inactiveSelectionBackground": "#FFE4BC"
26+
"editor.inactiveSelectionBackground": "#FFE4BC",
27+
"textLink.foreground": "#ffb45b",
28+
"textLink.activeForeground": "#ff8a00"
2729
}
2830
}

src/vs/gitpod/browser/workbench/workbench.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,8 @@ async function doStart(): Promise<IDisposable> {
826826
'minimapSlider.activeBackground': '#F9F9F9',
827827
'tab.inactiveBackground': '#F9F9F9',
828828
'editor.selectionBackground': '#FFE4BC',
829-
'editor.inactiveSelectionBackground': '#FFE4BC'
829+
'editor.inactiveSelectionBackground': '#FFE4BC',
830+
'textLink.foreground': '#ffb45b'
830831
}
831832
},
832833
configurationDefaults: {

0 commit comments

Comments
 (0)