about summary refs log tree commit diff
path: root/src/view/lib
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-12-05 13:25:04 -0600
committerPaul Frazee <pfrazee@gmail.com>2022-12-05 13:25:04 -0600
commitf27e32e54c3e6a6f7d156cf6c23c11778a7dd316 (patch)
tree484dbd281d938082c0de8ec3ba346ed8af839429 /src/view/lib
parent59363181e1c72dcec3a86cf155f12a556e569b8f (diff)
downloadvoidsky-f27e32e54c3e6a6f7d156cf6c23c11778a7dd316.tar.zst
Ensure the UI always renders, even in bad network conditions (close #6)
Diffstat (limited to 'src/view/lib')
-rw-r--r--src/view/lib/styles.ts4
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'},