Files
Postiz-android/artifacts/postiz-mobile/constants/colors.ts
T
antoinepiron bbbcf9f586 Add core functionality for mobile post scheduling app
Adds necessary dependencies including axios and react-native-calendars to pnpm-lock.yaml.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 7b0991ce-c7b8-4c82-9acc-fd3f9e762a01
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: dc1266fa-8375-43e1-aca0-9df31350f647
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/86064bd6-c937-4ca5-a5bf-bbef5749fb60/7b0991ce-c7b8-4c82-9acc-fd3f9e762a01/kWnlAIM
Replit-Helium-Checkpoint-Created: true
2026-05-03 11:41:45 +00:00

52 lines
1.2 KiB
TypeScript

const colors = {
light: {
text: "#F5F5F7",
tint: "#6366F1",
background: "#0D0D0F",
foreground: "#F5F5F7",
card: "#161619",
cardForeground: "#F5F5F7",
primary: "#6366F1",
primaryForeground: "#FFFFFF",
secondary: "#1E1E26",
secondaryForeground: "#F5F5F7",
muted: "#1E1E26",
mutedForeground: "#8E8E9A",
accent: "#6366F1",
accentForeground: "#FFFFFF",
destructive: "#EF4444",
destructiveForeground: "#FFFFFF",
border: "#252530",
input: "#1A1A22",
success: "#10B981",
warning: "#F59E0B",
error: "#EF4444",
},
dark: {
text: "#F5F5F7",
tint: "#6366F1",
background: "#0D0D0F",
foreground: "#F5F5F7",
card: "#161619",
cardForeground: "#F5F5F7",
primary: "#6366F1",
primaryForeground: "#FFFFFF",
secondary: "#1E1E26",
secondaryForeground: "#F5F5F7",
muted: "#1E1E26",
mutedForeground: "#8E8E9A",
accent: "#6366F1",
accentForeground: "#FFFFFF",
destructive: "#EF4444",
destructiveForeground: "#FFFFFF",
border: "#252530",
input: "#1A1A22",
success: "#10B981",
warning: "#F59E0B",
error: "#EF4444",
},
radius: 12,
};
export default colors;