-
-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cosmetic changes #143
base: develop
Are you sure you want to change the base?
Cosmetic changes #143
Changes from all commits
6ec692f
ed0e351
7f17611
c5c6049
cb28e21
8661885
2fe22e8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
}, | ||
"license": "MIT", | ||
"engines": { | ||
"vscode": "^1.12.0" | ||
"vscode": "^1.21.0" | ||
}, | ||
"galleryBanner": { | ||
"color": "#2E3440", | ||
|
@@ -59,7 +59,7 @@ | |
{ | ||
"label": "Nord", | ||
"uiTheme": "vs-dark", | ||
"path": "./themes/nord.json" | ||
"path": "./themes/nord-color-theme.json" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks a lot for pointing out this undocumented developer feature 💯 |
||
} | ||
] | ||
}, | ||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -22,7 +22,6 @@ | |||||||||||||||||
"dropdown.background": "#3b4252", | ||||||||||||||||||
"dropdown.border": "#3b4252", | ||||||||||||||||||
"dropdown.foreground": "#d8dee9", | ||||||||||||||||||
"editorActiveLineNumber.foreground": "#d8dee9cc", | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Even though this key has been deprecated in VS Code 1.22.0, again there is no reason to remove this key since it is deprecated but not invalid or unsupported by VS Code yet. The mechanism of deprecation is there for a reason: Allow legacy users to update and adapt to changes that will be unsupported in later versions. What can be done here is to ensure it uses the same color like the new key (``) To ensure other contributors know about the deprecation we can add a comment:
Suggested change
|
||||||||||||||||||
"editorCursor.foreground": "#d8dee9", | ||||||||||||||||||
"editorHint.border": "#ebcb8b00", | ||||||||||||||||||
"editorHint.foreground": "#ebcb8b", | ||||||||||||||||||
|
@@ -32,7 +31,7 @@ | |||||||||||||||||
"editorLineNumber.activeForeground": "#d8dee9", | ||||||||||||||||||
"editorWhitespace.foreground": "#4c566ab3", | ||||||||||||||||||
"editorWidget.background": "#2e3440", | ||||||||||||||||||
"editorWidgetBorder": "#3b4252", | ||||||||||||||||||
"editorWidget.border": "#3b4252", | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This has already been fixed in #141 |
||||||||||||||||||
"editor.background": "#2e3440", | ||||||||||||||||||
"editor.foreground": "#d8dee9", | ||||||||||||||||||
"editor.hoverHighlightBackground": "#3b4252", | ||||||||||||||||||
|
@@ -54,7 +53,7 @@ | |||||||||||||||||
"editorBracketMatch.background": "#2e344000", | ||||||||||||||||||
"editorBracketMatch.border": "#88c0d0", | ||||||||||||||||||
"editorCodeLens.foreground": "#4c566a", | ||||||||||||||||||
"editorGroup.background": "#2e3440", | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The addition of the new
Suggested change
|
||||||||||||||||||
"editorGroup.emptyBackground": "#2e3440", | ||||||||||||||||||
"editorGroup.border": "#3b425201", | ||||||||||||||||||
"editorGroup.dropBackground": "#3b425299", | ||||||||||||||||||
"editorGroupHeader.noTabsBackground": "#2e3440", | ||||||||||||||||||
|
@@ -129,20 +128,6 @@ | |||||||||||||||||
"merge.incomingHeaderBackground": "#8fbcbb66", | ||||||||||||||||||
"merge.incomingContentBackground": "#8fbcbb4d", | ||||||||||||||||||
"merge.border": "#3b425200", | ||||||||||||||||||
|
||||||||||||||||||
/* `notification.*` keys are legacy support for VS Code versions >1.21.0 */ | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Again like the other deprecated keys removed in this PR: For now Nord supports older versions at least until these keys are removed from VS Code itself or a major update is released making these keys unsupported. |
||||||||||||||||||
"notification.background": "#3b4252", | ||||||||||||||||||
"notification.buttonBackground": "#434c5e", | ||||||||||||||||||
"notification.buttonForeground": "#d8dee9", | ||||||||||||||||||
"notification.buttonHoverBackground": "#4c566a", | ||||||||||||||||||
"notification.errorBackground": "#bf616a", | ||||||||||||||||||
"notification.errorForeground": "#2e3440", | ||||||||||||||||||
"notification.foreground": "#d8dee9", | ||||||||||||||||||
"notification.infoBackground": "#88c0d0", | ||||||||||||||||||
"notification.infoForeground": "#2e3440", | ||||||||||||||||||
"notification.warningBackground": "#ebcb8b", | ||||||||||||||||||
"notification.warningForeground": "#2e3440", | ||||||||||||||||||
|
||||||||||||||||||
"notificationCenter.border": "#3b425200", | ||||||||||||||||||
"notificationCenterHeader.background": "#2e3440", | ||||||||||||||||||
"notificationCenterHeader.foreground": "#88c0d0", | ||||||||||||||||||
|
@@ -151,7 +136,6 @@ | |||||||||||||||||
"notifications.border": "#2e3440", | ||||||||||||||||||
"notifications.foreground": "#d8dee9", | ||||||||||||||||||
"notificationToast.border": "#3b425200", | ||||||||||||||||||
|
||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This separation blank line is intended and should stay. |
||||||||||||||||||
"panel.background": "#2e3440", | ||||||||||||||||||
"panel.border": "#3b4252", | ||||||||||||||||||
"panelTitle.activeBorder": "#88c0d000", | ||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no advantage and necessary reason to increase the minimum version. This would exclude users that haven't updated yet or can not update for any reason, e.g. pre-configured workstation/systems.
Please also revert this change.