Skip to content

Commit 78cd0b5

Browse files
authored
Merge pull request #1930 from giselles-ai/chore/v4-semantic-ci-colors-docs
chore(ci,semantic): add colors report and semantic.css scaffold (PR v…
2 parents aee077b + a619c50 commit 78cd0b5

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,10 @@ jobs:
2727
- run: pnpm knip
2828
- name: Build SDK
2929
run: pnpm build-sdk
30+
- name: Install ripgrep (rg)
31+
run: sudo apt-get update && sudo apt-get install -y ripgrep
32+
- name: Report Colors (non-blocking)
33+
run: pnpm report:colors
34+
continue-on-error: true
3035
- name: Test
3136
run: pnpm test
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/* semantic.css (Phase 1.5 scaffold) - not applied globally yet */
2+
3+
@layer utilities {
4+
:root {
5+
/* map semantic vars to primitives (light defaults) */
6+
--color-text: var(--color-gray-50);
7+
--color-text-inverse: var(--color-white);
8+
--color-surface: var(--color-gray-950);
9+
--color-border: var(--color-gray-700);
10+
--color-border-muted: var(--color-gray-800);
11+
--color-focused: var(--color-info-500);
12+
}
13+
}

0 commit comments

Comments
 (0)