Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
36 changes: 36 additions & 0 deletions .github/workflows/check-tokens.yml
Original file line number Diff line number Diff line change
@@ -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

4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
Loading