diff options
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'; |