Skip to content
Closed
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v6

- name: Set up node
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 14
node-version: 22

- name: Create comment (if necessary)
uses: actions/github-script@v5
Expand Down Expand Up @@ -43,18 +43,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v6

- name: Checkout base branch
uses: actions/checkout@v2
uses: actions/checkout@v6
with:
ref: ${{ github.base_ref }}
path: base

- name: Set up Node
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 14
node-version: 22

- name: Install dependencies
run: yarn
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
Expand Down
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,19 @@
2. Click on the "Install" button.
3. Then [select a theme](https://code.visualstudio.com/docs/getstarted/themes#_selecting-the-color-theme). The GitHub themes try to match the themes available in [github.com's settings](https://github.com/settings/appearance):
- `GitHub Light Default`
- `GitHub Light High Contrast` ✨ new ✨
- `GitHub Light Colorblind` ✨ new ✨
- `GitHub Light High Contrast`
- `GitHub Light Colorblind (Beta)`
- `GitHub Light Colorblind High Contrast (Beta)` ✨ new ✨
- `GitHub Light Tritanopia (Beta)` ✨ new ✨
- `GitHub Light Tritanopia High Contrast (Beta)` ✨ new ✨
- `GitHub Dark Default`
- `GitHub Dark High Contrast`
- `GitHub Dark Colorblind` ✨ new ✨
- `GitHub Dark Colorblind (Beta)`
- `GitHub Dark Colorblind High Contrast (Beta)` ✨ new ✨
- `GitHub Dark Tritanopia (Beta)` ✨ new ✨
- `GitHub Dark Tritanopia High Contrast (Beta)` ✨ new ✨
- `GitHub Dark Dimmed`
- `GitHub Dark Dimmed High Contrast` ✨ new ✨

Additionally, there are also two older themes. **Note**: They might not get updated frequently and are kept for legacy reasons:

Expand Down
43 changes: 39 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"url": "https://github.com/primer/github-vscode-theme/issues"
},
"engines": {
"vscode": "^1.43.0"
"vscode": "^1.108.1"
},
"categories": [
"Themes"
Expand Down Expand Up @@ -48,6 +48,21 @@
"uiTheme": "vs",
"path": "./themes/light-colorblind.json"
},
{
"label": "GitHub Light Colorblind High Contrast (Beta)",
"uiTheme": "hc-light",
"path": "./themes/light-colorblind-high-contrast.json"
},
{
"label": "GitHub Light Tritanopia (Beta)",
"uiTheme": "vs",
"path": "./themes/light-tritanopia.json"
},
{
"label": "GitHub Light Tritanopia High Contrast (Beta)",
"uiTheme": "hc-light",
"path": "./themes/light-tritanopia-high-contrast.json"
},
{
"label": "GitHub Dark Default",
"uiTheme": "vs-dark",
Expand All @@ -63,11 +78,31 @@
"uiTheme": "vs-dark",
"path": "./themes/dark-colorblind.json"
},
{
"label": "GitHub Dark Colorblind High Contrast (Beta)",
"uiTheme": "hc-black",
"path": "./themes/dark-colorblind-high-contrast.json"
},
{
"label": "GitHub Dark Tritanopia (Beta)",
"uiTheme": "vs-dark",
"path": "./themes/dark-tritanopia.json"
},
{
"label": "GitHub Dark Tritanopia High Contrast (Beta)",
"uiTheme": "hc-black",
"path": "./themes/dark-tritanopia-high-contrast.json"
},
{
"label": "GitHub Dark Dimmed",
"uiTheme": "vs-dark",
"path": "./themes/dark-dimmed.json"
},
{
"label": "GitHub Dark Dimmed High Contrast",
"uiTheme": "hc-black",
"path": "./themes/dark-dimmed-high-contrast.json"
},
{
"label": "GitHub Light",
"uiTheme": "vs",
Expand All @@ -83,11 +118,11 @@
"devDependencies": {
"@changesets/changelog-github": "^0.4.1",
"@changesets/cli": "^2.17.0",
"@primer/primitives": "7.10.0",
"@primer/primitives": "11.3.2",
"@vscode/vsce": "^3.7.1",
"chroma-js": "^2.1.2",
"color": "^3.1.2",
"nodemon": "^2.0.3",
"vsce": "^1.100.1"
"nodemon": "^3.1.11"
},
"scripts": {
"start": "nodemon --watch src src/index.js",
Expand Down
Loading
Loading