Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesPull RequestsActionsSecurityInsightsSettings
✨ AI
More
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.

colors.tsBlame16 lines · 1 contributor
5c83cccClaude1export 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
16export type ColorKey = keyof typeof colors;