-
Notifications
You must be signed in to change notification settings - Fork 3.1k
improvement(globals): light colors #2620
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Greptile SummaryReplaced warm greenish color palette in light theme with neutral grays to minimize green tint. Updated 48 CSS variables in Notable changes:
Custom instruction concern: Confidence Score: 4/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Dev as Developer
participant GC as globals.css
participant CV as CSS Variables
participant Comps as Components
participant UI as User Interface
Dev->>GC: Update light theme colors
GC->>CV: Define new neutral palette
Note over CV: --bg: #fdfdfd<br/>--surface-1 to -7<br/>--border: #e0e0e0<br/>--workflow-edge
Dev->>Comps: Update component backgrounds
Comps->>Comps: Change surface-4/5 → surface-3/4
Comps->>Comps: Add dark: variants
Comps->>Comps: Add bg-white for light mode
Dev->>Comps: Fix layout padding
Comps->>Comps: pl-60 → pl-[var(--sidebar-width)]
Dev->>Comps: Update workflow handles
Comps->>Comps: --surface-7 → --workflow-edge
Comps->>CV: Reference updated variables
CV->>UI: Render neutral color scheme
UI->>UI: Display without green tint
|
Summary
Changes globals light colors to minimize the green tint
Type of Change
Testing
Solo.
Checklist