fee283b5d6
Release APK / build (push) Has been cancelled
- Replace app icon with new Charbon·Lime brand assets (icon.png + adaptive-icon.png) - Apply design tokens to theme.ts: bg #1B2433, primary/success #88D656 (lime), text1 #EEF2F5 (cream) - Add ⚙ gear button (lime) in HomeScreen header → navigates to /settings - Expand settings: git provider selector (Gitea / GitHub / GitLab) with per-provider fields - Add lib/git.ts: unified pushIncidentToGit() for Gitea, GitHub (PUT), and GitLab APIs - Update incident detail screen to use lib/git.ts and dynamic provider routing Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
38 lines
577 B
TypeScript
38 lines
577 B
TypeScript
export const Colors = {
|
|
bg: "#1B2433",
|
|
surface: "#222D3D",
|
|
surface2: "#293648",
|
|
primary: "#88D656",
|
|
primaryDim: "#5FA33A",
|
|
success: "#88D656",
|
|
warning: "#F5A623",
|
|
danger: "#EF4444",
|
|
text1: "#EEF2F5",
|
|
text2: "#8FA5BF",
|
|
textDim: "#4E6480",
|
|
border: "#2E3F55",
|
|
} as const;
|
|
|
|
export const FontFamily = {
|
|
sans: undefined,
|
|
mono: "SpaceMono",
|
|
} as const;
|
|
|
|
export const FontSize = {
|
|
xs: 11,
|
|
sm: 13,
|
|
base: 15,
|
|
lg: 17,
|
|
xl: 20,
|
|
"2xl": 24,
|
|
"3xl": 30,
|
|
} as const;
|
|
|
|
export const Spacing = {
|
|
xs: 4,
|
|
sm: 8,
|
|
md: 16,
|
|
lg: 24,
|
|
xl: 32,
|
|
} as const;
|