CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | export const colors = {
bg: '#0d1117',
bgSecondary: '#161b22',
bgTertiary: '#21262d',
border: '#30363d',
text: '#e6edf3',
textMuted: '#8b949e',
textLink: '#58a6ff',
accent: '#238636', // green — gates passing
accentRed: '#da3633',
accentYellow: '#d29922',
accentPurple: '#bc8cff', // AI features
accentBlue: '#58a6ff',
} as const;
export type ColorKey = keyof typeof colors;
|