This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Timmy-time-dashboard/mobile-app/theme.config.d.ts

18 lines
525 B
TypeScript
Raw Normal View History

export const themeColors: {
primary: { light: string; dark: string };
background: { light: string; dark: string };
surface: { light: string; dark: string };
foreground: { light: string; dark: string };
muted: { light: string; dark: string };
border: { light: string; dark: string };
success: { light: string; dark: string };
warning: { light: string; dark: string };
error: { light: string; dark: string };
};
declare const themeConfig: {
themeColors: typeof themeColors;
};
export default themeConfig;