First commit of the new app

This commit is contained in:
2026-05-26 09:18:37 +01:00
parent 295d1bda21
commit b427fb0f85
110 changed files with 6483 additions and 833 deletions

31
assets/styles/colors.tsx Normal file
View File

@@ -0,0 +1,31 @@
import { rgbaColor } from "react-native-reanimated/src/Colors";
export const colors = {
azul: '#123572',
azul_text: '#00235A',
azul_bg: 'rgba(0, 35, 90, 0.7)',
azul_escuro: 'rgba(0, 9, 25, 0.85)',
vermelho: '#EB2415',
background_1: '#F4F7FE',
background_2: '#EFEFEF',
cinza: '#C7C7C7',
branco: '#ffffff',
success: '#36E25D',
successAccent: '#D7FFE0',
pendente: '#CB36E2',
pendenteAccent: '#EB2415',
errorAccent: '#CB36E2',
error: '#F74A3D',
stars: '#F8D23A',
};

7
assets/styles/fonts.tsx Normal file
View File

@@ -0,0 +1,7 @@
export const fonts = {
regular: 'SpaceGrotesk-Regular',
medium: 'SpaceGrotesk-Medium',
bold: 'SpaceGrotesk-Bold',
semiBold: 'SpaceGrotesk-SemiBold',
light: 'SpaceGrotesk-Light',
};