diff options
author | Ivan Chen <ivan@thetaggid.com> | 2020-10-07 20:17:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-07 20:17:13 -0400 |
commit | 0f332655d2b64700623f25912d2610517fb954b6 (patch) | |
tree | bf0f4b6fb1f5f226dea4a6ee9d312d28a258bda4 /src/constants/constants.ts | |
parent | e86478f52e191c52fea20980278174af46f50953 (diff) |
[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
Diffstat (limited to 'src/constants/constants.ts')
-rw-r--r-- | src/constants/constants.ts | 13 |
1 files changed, 13 insertions, 0 deletions
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<string> = [ '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, |