1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

A lot of updates

This commit is contained in:
Zhiyuan Zheng
2020-11-28 17:07:30 +01:00
parent 8200375c92
commit 735cc0b903
29 changed files with 940 additions and 1275 deletions

View File

@ -3,11 +3,14 @@ import { DefaultTheme, DarkTheme } from '@react-navigation/native'
export type ColorDefinitions =
| 'primary'
| 'secondary'
| 'disabled'
| 'background'
| 'link'
| 'border'
| 'separator'
| 'dangerous'
| 'success'
| 'error'
| 'warning'
const themeColors: {
[key in ColorDefinitions]: {
@ -23,6 +26,10 @@ const themeColors: {
light: 'rgb(153, 153, 153)',
dark: 'rgb(117, 117, 117)'
},
disabled: {
light: 'rgb(229, 229, 234)',
dark: 'rgb(44, 44, 46)'
},
background: {
light: 'rgb(255, 255, 255)',
dark: 'rgb(0, 0, 0)'
@ -39,9 +46,17 @@ const themeColors: {
light: 'rgba(0, 0, 0, 0.1)',
dark: 'rgba(255, 255, 255, 0.1)'
},
dangerous: {
success: {
light: 'rgb(52, 199, 89)',
dark: 'rgb(48, 209, 88)'
},
error: {
light: 'rgb(255, 59, 48)',
dark: 'rgb(255, 69, 58)'
},
warning: {
light: 'rgb(255, 149, 0)',
dark: 'rgb(255, 159, 10)'
}
}