From 4a3c676f66453bc0016f4a02248c3c7bb86f07f7 Mon Sep 17 00:00:00 2001 From: Mathieu <39670015+mathieusouflis@users.noreply.github.com> Date: Wed, 23 Sep 2026 21:30:59 +0200 Subject: [PATCH 1/2] docs: document shared Version 14 tokens --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 189021a..13338b7 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ A terminal color scheme for [Ghostty](https://ghostty.org), built around the Version 14 brand palette, the same palette used across the [Zed](https://github.com/version14/zed-theme), [VS Code](https://github.com/version14/vscode-theme), and [Neovim/Vim](https://github.com/version14/nvim-theme) ports. +## Palette source + +The shared semantic colors are maintained in [version14/tokens](https://github.com/version14/tokens). This repository keeps Ghostty-native generated files. + ## Variants | Variant | File | Description | From f09f020320c276df9e39958e0eaa2570c9ca6197 Mon Sep 17 00:00:00 2001 From: Mathieu <39670015+mathieusouflis@users.noreply.github.com> Date: Wed, 23 Sep 2026 22:33:17 +0200 Subject: [PATCH 2/2] ci: check shared Version 14 tokens --- .github/workflows/check-tokens.yml | 36 ++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/check-tokens.yml diff --git a/.github/workflows/check-tokens.yml b/.github/workflows/check-tokens.yml new file mode 100644 index 0000000..ffd2a81 --- /dev/null +++ b/.github/workflows/check-tokens.yml @@ -0,0 +1,36 @@ +name: Check Version 14 tokens + +on: + push: + pull_request: + schedule: + - cron: "17 6 * * 1" + workflow_dispatch: + +permissions: + contents: read + +jobs: + check-tokens: + runs-on: ubuntu-latest + steps: + - name: Check out this theme + uses: actions/checkout@v4 + with: + path: repos/${{ github.event.repository.name }} + + - name: Check out shared tokens + uses: actions/checkout@v4 + with: + repository: version14/tokens + ref: main + path: tokens + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.x" + + - name: Verify generated files + run: python tokens/generate.py --themes-root repos --check +