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

Partially fixed #113

This commit is contained in:
Zhiyuan Zheng
2021-05-09 21:59:03 +02:00
parent 006edd5c87
commit 0b659913dc
62 changed files with 2308 additions and 703 deletions

View File

@@ -10,6 +10,7 @@ export type ColorDefinitions =
| 'green'
| 'yellow'
| 'backgroundDefault'
| 'backgroundDefaultTransparent'
| 'backgroundOverlayDefault'
| 'backgroundOverlayInvert'
| 'border'
@@ -59,6 +60,10 @@ const themeColors: {
light: 'rgb(250, 250, 250)',
dark: 'rgb(18, 18, 18)'
},
backgroundDefaultTransparent: {
light: 'rgba(250, 250, 250, 0)',
dark: 'rgba(18, 18, 18, 0)'
},
backgroundOverlayDefault: {
light: 'rgba(250, 250, 250, 0.5)',
dark: 'rgba(0, 0, 0, 0.5)'