[GH-ISSUE #21] Theme fails to apply on Mac #16

Closed
opened 2026-05-06 13:12:30 +02:00 by BreizhHardware · 11 comments

Originally created by @0xironclad on GitHub (Feb 16, 2026).
Original GitHub issue: https://github.com/bwya77/vscode-dark-islands/issues/21

Originally assigned to: @bwya77 on GitHub.

I did run the one liner script but the UI of my VS code wouldn't update. i tried the manual installation but it seems like it is not working as expected. It just reverts the color theme to default Dark modern. I reloaded vs code manually too but that would't help. Any fixes for this?

Image
Originally created by @0xironclad on GitHub (Feb 16, 2026). Original GitHub issue: https://github.com/bwya77/vscode-dark-islands/issues/21 Originally assigned to: @bwya77 on GitHub. I did run the one liner script but the UI of my VS code wouldn't update. i tried the manual installation but it seems like it is not working as expected. It just reverts the color theme to default Dark modern. I reloaded vs code manually too but that would't help. Any fixes for this? <img width="1800" height="1169" alt="Image" src="https://github.com/user-attachments/assets/2ba7d384-0779-4aaf-9e2d-f0b7c3efff39" />
BreizhHardware 2026-05-06 13:12:30 +02:00
  • closed this issue
  • added the
    bug
    label
Author
Owner

@unveroleone commented on GitHub (Feb 16, 2026):

Same exact issue for me on my Mac!

<!-- gh-comment-id:3907107463 --> @unveroleone commented on GitHub (Feb 16, 2026): Same exact issue for me on my Mac!
Author
Owner

@Moonquakesss commented on GitHub (Feb 16, 2026):

For the same problem, please @ me when there is a solution.

<!-- gh-comment-id:3908467797 --> @Moonquakesss commented on GitHub (Feb 16, 2026): For the same problem, please @ me when there is a solution.
Author
Owner

@Nainounen commented on GitHub (Feb 16, 2026):

Same for me. The theme doesn't appear in the theme JSON. I'm trying the one-liner on macOS.

<!-- gh-comment-id:3908483488 --> @Nainounen commented on GitHub (Feb 16, 2026): Same for me. The theme doesn't appear in the theme JSON. I'm trying the one-liner on macOS.
Author
Owner

@ayushhagarwal commented on GitHub (Feb 16, 2026):

Hi, to make it work in mac. After the script execution is complete you need to do the following things to make it work:

  1. Install the two mentioned extensions in manual steps manually
  2. Copy the settings.json from this repo and replace with yours or compare and add missing
  3. Reload/Restart VS Code, it will work.

@Moonquakesss

<!-- gh-comment-id:3908710650 --> @ayushhagarwal commented on GitHub (Feb 16, 2026): Hi, to make it work in mac. After the script execution is complete you need to do the following things to make it work: 1. Install the two mentioned extensions in manual steps manually 2. Copy the settings.json from this repo and replace with yours or compare and add missing 3. Reload/Restart VS Code, it will work. @Moonquakesss
Author
Owner

@ZahinTapadar commented on GitHub (Feb 16, 2026):

how to uninstall this?

<!-- gh-comment-id:3909566841 --> @ZahinTapadar commented on GitHub (Feb 16, 2026): how to uninstall this?
Author
Owner

@bwya77 commented on GitHub (Feb 16, 2026):

how to uninstall this?

Uninstalling

To restore your VS Code to its previous state:

1. Restore your old settings

The installer backs up your previous settings to settings.json.pre-islands-dark. Restore it by copying it back:

macOS:

cp ~/Library/Application\ Support/Code/User/settings.json.pre-islands-dark ~/Library/Application\ Support/Code/User/settings.json

Linux:

cp ~/.config/Code/User/settings.json.pre-islands-dark ~/.config/Code/User/settings.json

Windows (PowerShell):

Copy-Item "$env:APPDATA\Code\User\settings.json.pre-islands-dark" "$env:APPDATA\Code\User\settings.json" -Force

2. Disable Custom UI Style

  1. Open Command Palette (Cmd+Shift+P / Ctrl+Shift+P)
  2. Run Custom UI Style: Disable
  3. VS Code will reload

3. Remove the theme extension

Delete the extension folder:

macOS/Linux:

rm -rf ~/.vscode/extensions/bwya77.islands-dark-1.0.0

Windows (PowerShell):

Remove-Item -Recurse -Force "$env:USERPROFILE\.vscode\extensions\bwya77.islands-dark-1.0.0"
<!-- gh-comment-id:3910076113 --> @bwya77 commented on GitHub (Feb 16, 2026): > how to uninstall this? ## Uninstalling To restore your VS Code to its previous state: ### 1. Restore your old settings The installer backs up your previous settings to `settings.json.pre-islands-dark`. Restore it by copying it back: **macOS:** ```bash cp ~/Library/Application\ Support/Code/User/settings.json.pre-islands-dark ~/Library/Application\ Support/Code/User/settings.json ``` **Linux:** ```bash cp ~/.config/Code/User/settings.json.pre-islands-dark ~/.config/Code/User/settings.json ``` **Windows (PowerShell):** ```powershell Copy-Item "$env:APPDATA\Code\User\settings.json.pre-islands-dark" "$env:APPDATA\Code\User\settings.json" -Force ``` ### 2. Disable Custom UI Style 1. Open **Command Palette** (`Cmd+Shift+P` / `Ctrl+Shift+P`) 2. Run **Custom UI Style: Disable** 3. VS Code will reload ### 3. Remove the theme extension Delete the extension folder: **macOS/Linux:** ```bash rm -rf ~/.vscode/extensions/bwya77.islands-dark-1.0.0 ``` **Windows (PowerShell):** ```powershell Remove-Item -Recurse -Force "$env:USERPROFILE\.vscode\extensions\bwya77.islands-dark-1.0.0" ```
Author
Owner

@bwya77 commented on GitHub (Feb 16, 2026):

I have the script working - working on other items to include in the update

<!-- gh-comment-id:3910078765 --> @bwya77 commented on GitHub (Feb 16, 2026): I have the script working - working on other items to include in the update
Author
Owner

@bwya77 commented on GitHub (Feb 16, 2026):

This is a duplicate issue and will be tracked in #5

<!-- gh-comment-id:3910107219 --> @bwya77 commented on GitHub (Feb 16, 2026): This is a duplicate issue and will be tracked in #5
Author
Owner

@ZahinTapadar commented on GitHub (Feb 16, 2026):

@bwya77 Thanks the for Uninstall guide. I suggest it should be added into the readme of the repo to make it more accessible(Guessing you wouldn't want a pull request adding from someone else). Will check the project out again when it's more stable and usable.

<!-- gh-comment-id:3910120287 --> @ZahinTapadar commented on GitHub (Feb 16, 2026): @bwya77 Thanks the for Uninstall guide. I suggest it should be added into the readme of the repo to make it more accessible(Guessing you wouldn't want a pull request adding from someone else). Will check the project out again when it's more stable and usable.
Author
Owner

@bwya77 commented on GitHub (Feb 16, 2026):

@zahintapadar Itsi n the readme and I also made another 1-liner script that will uninstall the theme and revert your settings back to the backup to make it even easier.

sorry about the bugs, I shared the repo as i was working on it not thinking many people will see it. I think its posted somewhere because I am getting a lot of traction on it. I commented it on Reddit but I have a feeling its elsewhere. Was not prepared. Trying to get all these bugs figured out

<!-- gh-comment-id:3910317714 --> @bwya77 commented on GitHub (Feb 16, 2026): @zahintapadar Itsi n the readme and I also made another 1-liner script that will uninstall the theme and revert your settings back to the backup to make it even easier. sorry about the bugs, I shared the repo as i was working on it not thinking many people will see it. I think its posted somewhere because I am getting a lot of traction on it. I commented it on Reddit but I have a feeling its elsewhere. Was not prepared. Trying to get all these bugs figured out
Author
Owner

@ZahinTapadar commented on GitHub (Feb 17, 2026):

Thanks @bwya77, in case it helps, this was the post that blew up: https://x.com/i/status/2023205034767561053

<!-- gh-comment-id:3911463441 --> @ZahinTapadar commented on GitHub (Feb 17, 2026): Thanks @bwya77, in case it helps, this was the post that blew up: https://x.com/i/status/2023205034767561053
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/vscode-dark-islands#16
No description provided.