Files
tolaria/apps/mobile/src/styles/noteCreateStyles.ts

65 lines
1.5 KiB
TypeScript
Raw Normal View History

2026-05-04 19:05:13 +02:00
import { StyleSheet } from 'react-native'
import { colors, spacing } from '../theme'
export const noteCreateStyles = StyleSheet.create({
composeButtonDisabled: {
opacity: 0.55,
},
2026-05-05 00:20:33 +02:00
createNoteAction: {
minWidth: 82,
alignItems: 'center',
justifyContent: 'center',
borderRadius: 16,
2026-05-04 19:05:13 +02:00
paddingHorizontal: spacing.md,
paddingVertical: spacing.sm,
2026-05-05 00:20:33 +02:00
backgroundColor: colors.primarySoft,
},
createNoteActionDisabled: {
opacity: 0.55,
},
createNoteActionPrimary: {
backgroundColor: colors.primary,
},
createNoteActionText: {
color: colors.primary,
fontSize: 14,
fontWeight: '700',
},
createNoteActionTextPrimary: {
color: colors.canvas,
},
createNoteActions: {
flexDirection: 'row',
justifyContent: 'flex-end',
gap: spacing.sm,
},
createNoteError: {
2026-05-04 19:05:13 +02:00
color: colors.textSoft,
fontSize: 13,
fontWeight: '600',
},
2026-05-05 00:20:33 +02:00
createNoteInput: {
minHeight: 44,
borderColor: colors.border,
borderWidth: StyleSheet.hairlineWidth,
borderRadius: 14,
paddingHorizontal: spacing.md,
color: colors.text,
backgroundColor: colors.canvas,
fontSize: 16,
fontWeight: '600',
},
createNotePrompt: {
position: 'absolute',
right: spacing.xl,
bottom: spacing.xl + 76,
width: 280,
gap: spacing.sm,
borderColor: colors.border,
borderWidth: StyleSheet.hairlineWidth,
borderRadius: 18,
padding: spacing.md,
backgroundColor: colors.canvas,
},
2026-05-04 19:05:13 +02:00
})