From 0f332655d2b64700623f25912d2610517fb954b6 Mon Sep 17 00:00:00 2001 From: Ivan Chen Date: Wed, 7 Oct 2020 20:17:13 -0400 Subject: [TMA-186] Instagram Taggs - Frontend (#45) * Renamed Moments(Bar) to Taggs(Bar) * created initial navigation and empty social media taggs screen * made more progress for the header styling * Finished social media taggs screen, organized code structure * linted stuff D: * moved bar height utility function to utils * moved color constants to constants * moved avatar title * updated comments for social media taggs * NOW the file is there --- src/constants/constants.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/constants/constants.ts') diff --git a/src/constants/constants.ts b/src/constants/constants.ts index ee178b68..b60b506f 100644 --- a/src/constants/constants.ts +++ b/src/constants/constants.ts @@ -9,6 +9,9 @@ export const IMAGE_WIDTH = SCREEN_WIDTH; export const IMAGE_HEIGHT = SCREEN_WIDTH; export const COVER_HEIGHT = SCREEN_WIDTH * (7 / 5); +export const AVATAR_DIM = 44; +export const AVATAR_GRADIENT_DIM = 50; + export const SOCIAL_LIST: Array = [ 'Instagram', 'Facebook', @@ -31,6 +34,16 @@ export const LINKEDIN_FONT_COLOR: string = '#78B5FD'; export const SNAPCHAT_FONT_COLOR: string = '#FFFC00'; export const YOUTUBE_FONT_COLOR: string = '#FCA4A4'; +export const TAGGS_GRADIENT = { + 'start': '#9F00FF', + 'end': '#27EAE9' +} + +export const AVATAR_GRADIENT = { + 'start': '#240041', + 'end': '#215151' +} + export const SOCIAL_FONT_COLORS = { INSTAGRAM: INSTAGRAM_FONT_COLOR, FACEBOOK: FACEBOOK_FONT_COLOR, -- cgit v1.2.3-70-g09d2