diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-05 13:25:04 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-05 13:25:04 -0600 |
commit | f27e32e54c3e6a6f7d156cf6c23c11778a7dd316 (patch) | |
tree | 484dbd281d938082c0de8ec3ba346ed8af839429 /src/view/lib/styles.ts | |
parent | 59363181e1c72dcec3a86cf155f12a556e569b8f (diff) | |
download | voidsky-f27e32e54c3e6a6f7d156cf6c23c11778a7dd316.tar.zst |
Ensure the UI always renders, even in bad network conditions (close #6)
Diffstat (limited to 'src/view/lib/styles.ts')
-rw-r--r-- | src/view/lib/styles.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/view/lib/styles.ts b/src/view/lib/styles.ts index 1ac6283a2..d3fc8c70f 100644 --- a/src/view/lib/styles.ts +++ b/src/view/lib/styles.ts @@ -10,6 +10,9 @@ export const colors = { gray3: '#c1b9b9', gray4: '#968d8d', gray5: '#645454', + gray6: '#423737', + gray7: '#2D2626', + gray8: '#131010', blue0: '#bfe1ff', blue1: '#8bc7fd', @@ -131,6 +134,7 @@ export const s = StyleSheet.create({ flexRow: {flexDirection: 'row'}, flexCol: {flexDirection: 'column'}, flex1: {flex: 1}, + alignCenter: {alignItems: 'center'}, // position absolute: {position: 'absolute'}, |