Skip to content

Commit

Permalink
feat: add Red theme (#1)
Browse files Browse the repository at this point in the history
Co-authored-by: Anthony Fu <[email protected]>
  • Loading branch information
mutasim77 and antfu authored Dec 21, 2023
1 parent 7c4c957 commit 83f0f4f
Show file tree
Hide file tree
Showing 5 changed files with 430 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tm-themes/NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ forth below.
The following files/folders contain third party software:

=========================================================================================================
Files: dark-plus.json, light-plus.json, monokai.json, solarized-dark.json, solarized-light.json
Files: dark-plus.json, light-plus.json, monokai.json, red.json, solarized-dark.json, solarized-light.json
License: https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt
SPDX: MIT
---------------------------------------------------------------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions packages/tm-themes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ import { themes } from 'tm-themes'
| Nord | `nord` | [arcticicestudio/nord-visual-studio-code](https://github.com/arcticicestudio/nord-visual-studio-code/blob/27045851c5154fe2d9b116e7491c596cdcd72275/themes/nord-color-theme.json) | [MIT](https://raw.githubusercontent.com/nordtheme/visual-studio-code/develop/license) |
| One Dark Pro | `one-dark-pro` | [Binaryify/OneDark-Pro](https://github.com/Binaryify/OneDark-Pro/blob/2cb4ae735fc0482e0486b52cd873128eb5249900/themes/OneDark-Pro.json) | [MIT](https://raw.githubusercontent.com/Binaryify/OneDark-Pro/master/LICENSE.txt) |
| Poimandres | `poimandres` | [drcmda/poimandres-theme](https://github.com/drcmda/poimandres-theme/blob/574213aba50e3a46a95fa86a69025a0fae046a8a/themes/poimandres-color-theme.json) | |
| Red | `red` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/f605341af6b083f2b6d9c853d882b96955c690b7/extensions/theme-red/themes/Red-color-theme.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) |
| Rosé Pine | `rose-pine` | [rose-pine/vscode](https://github.com/rose-pine/vscode/blob/a36bb5866f161d5346d16fbe33f5ad8136ef6a1b/themes/rose-pine-color-theme.json) | [MIT](https://raw.githubusercontent.com/rose-pine/vscode/main/license) |
| Rosé Pine Moon | `rose-pine-moon` | [rose-pine/vscode](https://github.com/rose-pine/vscode/blob/a36bb5866f161d5346d16fbe33f5ad8136ef6a1b/themes/rose-pine-moon-color-theme.json) | [MIT](https://raw.githubusercontent.com/rose-pine/vscode/main/license) |
| Slack Dark | `slack-dark` | [slack-theme/visual-studio-code](https://github.com/slack-theme/visual-studio-code/blob/28cd093d2aac9bfe0d3b96d468efa73a1d6639c2/themes/dark-mode.json) | [MIT](https://raw.githubusercontent.com/slack-theme/visual-studio-code/master/License) |
Expand Down
9 changes: 9 additions & 0 deletions packages/tm-themes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,15 @@ export const themes = [
source: 'https://github.com/drcmda/poimandres-theme/blob/574213aba50e3a46a95fa86a69025a0fae046a8a/themes/poimandres-color-theme.json',
type: 'dark',
},
{
displayName: 'Red',
license: 'MIT',
licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt',
name: 'red',
sha: 'f605341af6b083f2b6d9c853d882b96955c690b7',
source: 'https://github.com/microsoft/vscode/blob/f605341af6b083f2b6d9c853d882b96955c690b7/extensions/theme-red/themes/Red-color-theme.json',
type: 'dark',
},
{
displayName: 'Rosé Pine',
license: 'MIT',
Expand Down
Loading

0 comments on commit 83f0f4f

Please sign in to comment.