feat(theme): add vscode-modern and vscode-2026 themes#79
Open
brycewc wants to merge 3 commits into
Open
Conversation
|
@brycewc is attempting to deploy a commit to the Suni's projects Team on Vercel. A member of the Team first needs to authorize it. |
Owner
|
@brycewc Can you see that? |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Author
|
@YYsuni , I cannot see those review messages you screenshotted. I removed the pinned package manager from package.json, didn't mean to have that in there. Thanks for the quick response! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Adds two new VS Code themes, both following the same single-paired-theme pattern as the existing
vscodetheme (light mode uses the light palette, dark mode uses the dark palette):vscode-modern— matches VS Code's official Dark Modern and Light Modern themes (the current VS Code defaults).vscode-2026— a newer VS Code default palette.Colors
Base text comes from each theme's
editor.foreground; token colors are the syntax colors those themes inherit.vscode-modern#3b3b3b#cccccc#0451a5#9cdcfe#098658#b5cea8#a31515#ce9178#0000ff#569cd6vscode-2026#1f2328#c9d1d9#116329#7ee787#0550ae#79c0ff#0a3069#a5d6ff#0550ae#79c0ffChanges
src/style.css/src/dark.css— light and dark palettes for.json-view_vscode-modernand.json-view_vscode-2026src/components/json-view.tsx— added'vscode-modern'and'vscode-2026'to thethemeunionsrc/stories/share.ts— Storybook control optionssrc/stories/theme.stories.tsx—Vscode_Modern/Vscode_Modern_DarkandVscode_2026/Vscode_2026_Darkstorieswebsite/src/contents/themes.tsx— theme list + preview background colorsREADME.md— documented the new optionsEach new theme is placed directly after
vscodein every list (vscode→vscode-modern→vscode-2026).