[PR #336] [MERGED] Add VSCode themes plugin with 30+ popular themes #614

Closed
opened 2026-04-16 15:20:05 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mountain-loop/yaak/pull/336
Author: @gschier
Created: 12/30/2025
Status: Merged
Merged: 12/31/2025
Merged by: @gschier

Base: mainHead: claude/vscode-themes-plugin-WBAKg


📝 Commits (5)

  • a0a14e6 Add VSCode themes plugin with 30+ popular themes
  • 70e1564 Merge remote-tracking branch 'origin/main' into claude/vscode-themes-plugin-WBAKg
  • a14b03b Tweak all the themes
  • 5013b31 Merge new themes into base themes
  • 6e97543 Add Zed Fleet themes

📊 Changes

38 files changed (+2487 additions, -786 deletions)

View changed files

📝 package-lock.json (+5 -0)
📝 plugins/themes-yaak/src/index.ts (+110 -785)
plugins/themes-yaak/src/themes/andromeda.ts (+47 -0)
plugins/themes-yaak/src/themes/atom-one-dark.ts (+47 -0)
plugins/themes-yaak/src/themes/ayu.ts (+122 -0)
plugins/themes-yaak/src/themes/bluloco.ts (+77 -0)
plugins/themes-yaak/src/themes/catppuccin.ts (+165 -0)
plugins/themes-yaak/src/themes/cobalt2.ts (+47 -0)
plugins/themes-yaak/src/themes/dracula.ts (+29 -0)
plugins/themes-yaak/src/themes/everforest.ts (+77 -0)
plugins/themes-yaak/src/themes/fleet.ts (+173 -0)
plugins/themes-yaak/src/themes/github-dimmed.ts (+46 -0)
plugins/themes-yaak/src/themes/github.ts (+55 -0)
plugins/themes-yaak/src/themes/gruvbox.ts (+21 -0)
plugins/themes-yaak/src/themes/high-contrast.ts (+46 -0)
plugins/themes-yaak/src/themes/horizon.ts (+47 -0)
plugins/themes-yaak/src/themes/hotdog-stand.ts (+58 -0)
plugins/themes-yaak/src/themes/material-darker.ts (+39 -0)
plugins/themes-yaak/src/themes/material-ocean.ts (+43 -0)
plugins/themes-yaak/src/themes/material-palenight.ts (+45 -0)

...and 18 more files

📄 Description

Create a new plugin that ports popular Visual Studio Code themes to Yaak.

Themes included:

  • One Dark Pro, Atom One Dark
  • Material Theme (Palenight, Ocean, Darker)
  • Night Owl / Light Owl
  • Tokyo Night (Storm, Day variants)
  • Solarized (Dark, Light)
  • Ayu (Dark, Mirage, Light)
  • SynthWave '84
  • Shades of Purple
  • Cobalt2
  • Horizon
  • Panda Syntax
  • Andromeda
  • Winter is Coming
  • Vitesse (Dark, Light)
  • Everforest (Dark, Light)
  • GitHub Dark Dimmed
  • Slack Aubergine
  • Noctis Azureus
  • Bluloco (Dark, Light)

Each theme is organized in its own file for maintainability.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mountain-loop/yaak/pull/336 **Author:** [@gschier](https://github.com/gschier) **Created:** 12/30/2025 **Status:** ✅ Merged **Merged:** 12/31/2025 **Merged by:** [@gschier](https://github.com/gschier) **Base:** `main` ← **Head:** `claude/vscode-themes-plugin-WBAKg` --- ### 📝 Commits (5) - [`a0a14e6`](https://github.com/mountain-loop/yaak/commit/a0a14e67c7a6554fbccaffa693b155b077b4d396) Add VSCode themes plugin with 30+ popular themes - [`70e1564`](https://github.com/mountain-loop/yaak/commit/70e15643c3bdd6ed2c2c667ea1e46a01571f71d4) Merge remote-tracking branch 'origin/main' into claude/vscode-themes-plugin-WBAKg - [`a14b03b`](https://github.com/mountain-loop/yaak/commit/a14b03bbd9ab81c629842b9a4d31a1d34df13606) Tweak all the themes - [`5013b31`](https://github.com/mountain-loop/yaak/commit/5013b31ab34a06fe9d63958b7a50899366cf32bc) Merge new themes into base themes - [`6e97543`](https://github.com/mountain-loop/yaak/commit/6e97543df39592f66df2294bc3b1723bf62e4d45) Add Zed Fleet themes ### 📊 Changes **38 files changed** (+2487 additions, -786 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+5 -0) 📝 `plugins/themes-yaak/src/index.ts` (+110 -785) ➕ `plugins/themes-yaak/src/themes/andromeda.ts` (+47 -0) ➕ `plugins/themes-yaak/src/themes/atom-one-dark.ts` (+47 -0) ➕ `plugins/themes-yaak/src/themes/ayu.ts` (+122 -0) ➕ `plugins/themes-yaak/src/themes/bluloco.ts` (+77 -0) ➕ `plugins/themes-yaak/src/themes/catppuccin.ts` (+165 -0) ➕ `plugins/themes-yaak/src/themes/cobalt2.ts` (+47 -0) ➕ `plugins/themes-yaak/src/themes/dracula.ts` (+29 -0) ➕ `plugins/themes-yaak/src/themes/everforest.ts` (+77 -0) ➕ `plugins/themes-yaak/src/themes/fleet.ts` (+173 -0) ➕ `plugins/themes-yaak/src/themes/github-dimmed.ts` (+46 -0) ➕ `plugins/themes-yaak/src/themes/github.ts` (+55 -0) ➕ `plugins/themes-yaak/src/themes/gruvbox.ts` (+21 -0) ➕ `plugins/themes-yaak/src/themes/high-contrast.ts` (+46 -0) ➕ `plugins/themes-yaak/src/themes/horizon.ts` (+47 -0) ➕ `plugins/themes-yaak/src/themes/hotdog-stand.ts` (+58 -0) ➕ `plugins/themes-yaak/src/themes/material-darker.ts` (+39 -0) ➕ `plugins/themes-yaak/src/themes/material-ocean.ts` (+43 -0) ➕ `plugins/themes-yaak/src/themes/material-palenight.ts` (+45 -0) _...and 18 more files_ </details> ### 📄 Description Create a new plugin that ports popular Visual Studio Code themes to Yaak. Themes included: - One Dark Pro, Atom One Dark - Material Theme (Palenight, Ocean, Darker) - Night Owl / Light Owl - Tokyo Night (Storm, Day variants) - Solarized (Dark, Light) - Ayu (Dark, Mirage, Light) - SynthWave '84 - Shades of Purple - Cobalt2 - Horizon - Panda Syntax - Andromeda - Winter is Coming - Vitesse (Dark, Light) - Everforest (Dark, Light) - GitHub Dark Dimmed - Slack Aubergine - Noctis Azureus - Bluloco (Dark, Light) Each theme is organized in its own file for maintainability. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-16 15:20:05 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/yaak#614