diff options
| author | Brian Kim <brian@tagg.id> | 2021-06-01 14:43:30 -0700 |
|---|---|---|
| committer | Brian Kim <brian@tagg.id> | 2021-06-01 14:43:30 -0700 |
| commit | 68fcf7c533ba7612c94760b1171c506f64bfc0ae (patch) | |
| tree | b7afc5349b493cedf6f019ca9c6ab87dbb465597 /src/constants/constants.ts | |
| parent | 013dfb29a603fcd51105e0fa28e8b6adc0f49b86 (diff) | |
Filled out basic front-end, need to integrate with back-end
Diffstat (limited to 'src/constants/constants.ts')
| -rw-r--r-- | src/constants/constants.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/constants/constants.ts b/src/constants/constants.ts index 99d3901b..e6c23554 100644 --- a/src/constants/constants.ts +++ b/src/constants/constants.ts @@ -21,6 +21,9 @@ export const AVATAR_GRADIENT_DIM = 50; export const TAGG_ICON_DIM = 58; export const TAGG_RING_DIM = normalize(60); +// default height of the navigation bar, from react native library, unless on ipad +export const NAV_BAR_HEIGHT = 49; + export const INTEGRATED_SOCIAL_LIST: string[] = [ 'Instagram', 'Facebook', @@ -89,6 +92,7 @@ export const BADGE_GRADIENT_REST = [ 'rgba(78, 54, 41, 1)', 'rgba(236, 32, 39, 1)', ]; +export const NOTIFICATION_ICON_GRADIENT = ['#8F01FF', '#7B02DA']; export const SOCIAL_FONT_COLORS = { INSTAGRAM: INSTAGRAM_FONT_COLOR, |
