Blame · Line-by-line history
colors.ts
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| 5c83ccc | 1 | export const colors = { |
| 2 | bg: '#0d1117', | |
| 3 | bgSecondary: '#161b22', | |
| 4 | bgTertiary: '#21262d', | |
| 5 | border: '#30363d', | |
| 6 | text: '#e6edf3', | |
| 7 | textMuted: '#8b949e', | |
| 8 | textLink: '#58a6ff', | |
| 9 | accent: '#238636', // green — gates passing | |
| 10 | accentRed: '#da3633', | |
| 11 | accentYellow: '#d29922', | |
| 12 | accentPurple: '#bc8cff', // AI features | |
| 13 | accentBlue: '#58a6ff', | |
| 14 | } as const; | |
| 15 | ||
| 16 | export type ColorKey = keyof typeof colors; |