diff options
| author | Adam <[email protected]> | 2025-11-13 14:47:25 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-11-13 14:47:29 -0600 |
| commit | a8836c5615f620321cc7aa2670767e0c9586d27b (patch) | |
| tree | 4af1b0f7397d2dceac6e0c9ba734049f41d7c326 /packages/ui/script | |
| parent | 779a27693a9d37ae212c27af353414ff4de07ea4 (diff) | |
| download | opencode-a8836c5615f620321cc7aa2670767e0c9586d27b.tar.gz opencode-a8836c5615f620321cc7aa2670767e0c9586d27b.zip | |
wip(desktop): layout improvements
Diffstat (limited to 'packages/ui/script')
| -rw-r--r-- | packages/ui/script/colors.txt | 35 | ||||
| -rw-r--r-- | packages/ui/script/tailwind.ts | 2 |
2 files changed, 21 insertions, 16 deletions
diff --git a/packages/ui/script/colors.txt b/packages/ui/script/colors.txt index 5b5cfa73a..f84966853 100644 --- a/packages/ui/script/colors.txt +++ b/packages/ui/script/colors.txt @@ -44,9 +44,9 @@ --surface-info-base: var(--lilac-light-3); --surface-info-weak: var(--lilac-light-2); --surface-info-strong: var(--lilac-light-9); +--surface-diff-unchanged-base: #FFFFFF00; --surface-diff-skip-base: var(--smoke-light-2); --surface-diff-hidden-base: var(--blue-light-3); ---surface-diff-unchanged-base: #FFFFFF00; --surface-diff-hidden-weak: var(--blue-light-2); --surface-diff-hidden-weaker: var(--blue-light-1); --surface-diff-hidden-strong: var(--blue-light-5); @@ -95,7 +95,7 @@ --text-on-brand-weaker: var(--smoke-light-alpha-8); --text-on-brand-strong: var(--smoke-light-alpha-12); --button-secondary-base: #FDFCFC; ---button-secondary-base-hover: #FAF9F9; +--button-secondary-hover: #FAF9F9; --border-base: var(--smoke-light-alpha-7); --border-hover: var(--smoke-light-alpha-8); --border-active: var(--smoke-light-alpha-9); @@ -190,20 +190,25 @@ --icon-diff-add-active: var(--mint-light-12); --icon-diff-delete-base: var(--ember-light-10); --icon-diff-delete-hover: var(--ember-light-11); ---syntax-comment: #8A8A8A; ---syntax-string: #D68C27; ---syntax-keyword: #3B7DD8; ---syntax-function: #D1383D; ---syntax-number: #3D9A57; ---syntax-operator: #D68C27; ---syntax-variable: #B0851F; ---syntax-type: #318795; ---syntax-constant: #953170; ---syntax-punctuation: #1A1A1A; ---syntax-success: var(--apple-dark-10); +--syntax-comment: var(--text-weaker); +--syntax-regexp: var(--text-base); +--syntax-string: #007663; +--syntax-keyword: var(--text-weak); +--syntax-primitive: #FB7F51; +--syntax-operator: var(--text-weak); +--syntax-variable: var(--text-strong); +--syntax-property: #EC6CC8; +--syntax-type: #738400; +--syntax-constant: #00B2B9; +--syntax-punctuation: var(--text-weaker); +--syntax-object: var(--text-strong); +--syntax-success: var(--apple-light-10); --syntax-warning: var(--amber-light-10); ---syntax-critical: var(--ember-dark-9); ---syntax-info: var(--lilac-dark-11); +--syntax-critical: var(--ember-light-9); +--syntax-info: #0091A7; +--syntax-diff-add: var(--mint-light-11); +--syntax-diff-delete: var(--ember-light-11); +--syntax-diff-unknown: #FF0000; --markdown-heading: #D68C27; --markdown-text: #1A1A1A; --markdown-link: #3B7DD8; diff --git a/packages/ui/script/tailwind.ts b/packages/ui/script/tailwind.ts index 1c7064690..6e558a8fa 100644 --- a/packages/ui/script/tailwind.ts +++ b/packages/ui/script/tailwind.ts @@ -11,7 +11,7 @@ for (const line of colors.split("\n")) { } const output = ` -/* Generated by script/colors.ts */ +/* Generated by script/tailwind.ts */ /* Do not edit this file manually */ @theme { |
