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 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | import { Platform } from 'react-native';
export const fonts = {
mono: Platform.select({
ios: 'Menlo',
android: 'monospace',
default: 'monospace',
}),
sans: Platform.select({
ios: 'System',
android: 'Roboto',
default: 'System',
}),
};
export const fontSizes = {
xs: 11,
sm: 13,
base: 15,
md: 17,
lg: 20,
xl: 24,
xxl: 30,
};
export const fontWeights = {
regular: '400' as const,
medium: '500' as const,
semibold: '600' as const,
bold: '700' as const,
};
export const lineHeights = {
tight: 1.3,
normal: 1.5,
relaxed: 1.75,
};
|