32 lines
538 B
TypeScript
32 lines
538 B
TypeScript
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',
|
|
};
|
|
|
|
|
|
|
|
|