Polish mobile app for App Store review and expand CRUD.
Default to beenvoice.soconnor.dev with server settings hidden behind Advanced; add Entities tab with clients/businesses, invoice creation, UI fixes for dashboard layout, date fields, FAB position, and card-matched button radius. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -51,6 +51,10 @@ export type ThemeColors = {
|
||||
brandDark: string;
|
||||
text: string;
|
||||
textMuted: string;
|
||||
switchTrackOn: string;
|
||||
switchTrackOff: string;
|
||||
switchThumb: string;
|
||||
switchIosBackground: string;
|
||||
};
|
||||
|
||||
export function getThemeColors(scheme: ColorSchemeName): ThemeColors {
|
||||
@@ -83,6 +87,10 @@ export function getThemeColors(scheme: ColorSchemeName): ThemeColors {
|
||||
brandDark: palette?.foreground ?? light.foreground,
|
||||
text: palette?.foreground ?? light.foreground,
|
||||
textMuted: palette?.mutedForeground ?? light.mutedForeground,
|
||||
switchTrackOn: isDark ? (palette?.success ?? "#4ADE80") : light.primary,
|
||||
switchTrackOff: isDark ? "#3F3F46" : light.border,
|
||||
switchThumb: isDark ? "#FAFAFA" : "#FFFFFF",
|
||||
switchIosBackground: isDark ? "#3F3F46" : light.border,
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user