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

Expandable content done

This commit is contained in:
Zhiyuan Zheng
2020-12-02 00:16:27 +01:00
parent 9bfee02484
commit 8986680c6d
8 changed files with 95 additions and 24 deletions

View File

@ -5,6 +5,8 @@ export type ColorDefinitions =
| 'secondary'
| 'disabled'
| 'background'
| 'backgroundGradientStart'
| 'backgroundGradientEnd'
| 'link'
| 'border'
| 'separator'
@ -34,6 +36,14 @@ const themeColors: {
light: 'rgb(255, 255, 255)',
dark: 'rgb(0, 0, 0)'
},
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)'
},
link: {
light: 'rgb(0, 122, 255)',
dark: 'rgb(10, 132, 255)'