tooot/src/utils/styles/themes.ts

121 lines
2.6 KiB
TypeScript
Raw Normal View History

2020-11-23 00:07:32 +01:00
import { DefaultTheme, DarkTheme } from '@react-navigation/native'
export type ColorDefinitions =
| 'primary'
2020-12-03 01:28:56 +01:00
| 'primaryOverlay'
2020-11-23 00:07:32 +01:00
| 'secondary'
2020-11-28 17:07:30 +01:00
| 'disabled'
2020-11-23 00:07:32 +01:00
| 'background'
2020-12-02 00:16:27 +01:00
| 'backgroundGradientStart'
| 'backgroundGradientEnd'
2020-12-03 01:28:56 +01:00
| 'backgroundOverlay'
2020-11-23 00:07:32 +01:00
| 'link'
| 'border'
| 'separator'
2020-11-28 17:07:30 +01:00
| 'success'
| 'error'
| 'warning'
2020-11-23 00:07:32 +01:00
const themeColors: {
[key in ColorDefinitions]: {
light: string
dark: string
}
} = {
primary: {
light: 'rgb(0, 0, 0)',
dark: 'rgb(255, 255, 255)'
},
2020-12-03 01:28:56 +01:00
primaryOverlay: {
light: 'rgb(255, 255, 255)',
dark: 'rgb(0, 0, 0)'
},
2020-11-23 00:07:32 +01:00
secondary: {
light: 'rgb(153, 153, 153)',
dark: 'rgb(117, 117, 117)'
},
2020-11-28 17:07:30 +01:00
disabled: {
light: 'rgb(229, 229, 234)',
dark: 'rgb(44, 44, 46)'
},
2020-11-23 00:07:32 +01:00
background: {
light: 'rgb(255, 255, 255)',
dark: 'rgb(0, 0, 0)'
},
2020-12-02 00:16:27 +01:00
backgroundGradientStart: {
light: 'rgba(255, 255, 255, 0.5)',
dark: 'rgba(0, 0, 0, 0.5)'
},
backgroundGradientEnd: {
light: 'rgba(255, 255, 255, 1)',
dark: 'rgba(0, 0, 0, 1)'
},
2020-12-03 01:28:56 +01:00
backgroundOverlay: {
light: 'rgba(0, 0, 0, 0.5)',
2020-12-25 18:20:09 +01:00
dark: 'rgba(255, 255, 255, 0.5)'
2020-12-03 01:28:56 +01:00
},
2020-11-23 00:07:32 +01:00
link: {
light: 'rgb(0, 122, 255)',
dark: 'rgb(10, 132, 255)'
},
border: {
light: 'rgba(0, 0, 0, 0.3)',
dark: 'rgba(255, 255, 255, 0.16)'
},
separator: {
light: 'rgba(0, 0, 0, 0.1)',
dark: 'rgba(255, 255, 255, 0.1)'
2020-11-24 00:18:47 +01:00
},
2020-11-28 17:07:30 +01:00
success: {
light: 'rgb(52, 199, 89)',
dark: 'rgb(48, 209, 88)'
},
error: {
2020-11-24 00:18:47 +01:00
light: 'rgb(255, 59, 48)',
dark: 'rgb(255, 69, 58)'
2020-11-28 17:07:30 +01:00
},
warning: {
light: 'rgb(255, 149, 0)',
dark: 'rgb(255, 159, 10)'
2020-11-23 00:07:32 +01:00
}
}
const getTheme = (mode: 'light' | 'dark') => {
let Theme = {} as {
[key in ColorDefinitions]: string
}
const keys = Object.keys(themeColors) as ColorDefinitions[]
keys.forEach(key => (Theme[key] = themeColors[key][mode]))
return Theme
}
const themes = {
light: {
...DefaultTheme,
colors: {
...DefaultTheme.colors,
primary: themeColors.primary.light,
background: themeColors.background.light,
card: themeColors.background.light || 'rgba(249, 249, 249, 0.94)',
text: themeColors.primary.light,
border: themeColors.border.light,
notification: 'rgb(255, 59, 48)'
}
},
dark: {
...DarkTheme,
colors: {
...DarkTheme.colors,
primary: themeColors.primary.dark,
background: themeColors.background.dark,
card: themeColors.background.dark || 'rgba(22, 22, 22, 0.94)',
text: themeColors.primary.dark,
border: themeColors.border.dark,
notification: 'rgb(255, 69, 58)'
}
}
}
export { themeColors, getTheme, themes }