diff options
author | Ivan Chen <ivan@thetaggid.com> | 2020-10-08 16:26:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-08 16:26:16 -0400 |
commit | 6e3fe33e5e1d3818ef8bb942c1544581ab8c0688 (patch) | |
tree | 11d86adf5ef56efadf6a1edafdc33fdba20fab80 /src/constants/constants.ts | |
parent | cf0f22d4e86e44efee6ae1d4f23e0642df117b79 (diff) |
[TMA-229] Moments Barebones (#50)
* added react native svg transformation to support svg icons
* finished moments barebones view
* resolved a warning from the svg file
Diffstat (limited to 'src/constants/constants.ts')
-rw-r--r-- | src/constants/constants.ts | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/src/constants/constants.ts b/src/constants/constants.ts index b60b506f..76a0df03 100644 --- a/src/constants/constants.ts +++ b/src/constants/constants.ts @@ -35,14 +35,14 @@ export const SNAPCHAT_FONT_COLOR: string = '#FFFC00'; export const YOUTUBE_FONT_COLOR: string = '#FCA4A4'; export const TAGGS_GRADIENT = { - 'start': '#9F00FF', - 'end': '#27EAE9' -} + start: '#9F00FF', + end: '#27EAE9', +}; export const AVATAR_GRADIENT = { - 'start': '#240041', - 'end': '#215151' -} + start: '#240041', + end: '#215151', +}; export const SOCIAL_FONT_COLORS = { INSTAGRAM: INSTAGRAM_FONT_COLOR, @@ -55,3 +55,13 @@ export const SOCIAL_FONT_COLORS = { SNAPCHAT: SNAPCHAT_FONT_COLOR, YOUTUBE: YOUTUBE_FONT_COLOR, }; + +// Profile Moments +export const defaultMoments: Array<string> = [ + 'Early Life', + 'Best Friends', + 'Dance', + 'Education', +]; + +export const MOMENTS_TITLE_COLOR: string = '#698DD3'; |