Files
bigbluebutton-tablet/react-native/app/styles/colors.ts
2022-02-24 16:03:28 -03:00

15 lines
283 B
TypeScript

interface IColors {
primary: string
secundary: string
primary_light: string
white: string
danger: string
}
export const colors: IColors = {
primary: '#06172A',
secundary: '#F3F6F9',
primary_light: '#176DC8',
white: '#FFF',
danger: '#DF2621'
}