aboutsummaryrefslogtreecommitdiff
path: root/src/constants
diff options
context:
space:
mode:
Diffstat (limited to 'src/constants')
-rw-r--r--src/constants/constants.ts34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/constants/constants.ts b/src/constants/constants.ts
index f79c2c5b..ee178b68 100644
--- a/src/constants/constants.ts
+++ b/src/constants/constants.ts
@@ -8,3 +8,37 @@ export const PROFILE_CUTOUT_CORNER_Y = SCREEN_HEIGHT / 1.95;
export const IMAGE_WIDTH = SCREEN_WIDTH;
export const IMAGE_HEIGHT = SCREEN_WIDTH;
export const COVER_HEIGHT = SCREEN_WIDTH * (7 / 5);
+
+export const SOCIAL_LIST: Array<string> = [
+ 'Instagram',
+ 'Facebook',
+ 'Twitter',
+ 'Twitch',
+ 'Pinterest',
+ 'Whatsapp',
+ 'Linkedin',
+ 'Snapchat',
+ 'Youtube',
+];
+
+export const INSTAGRAM_FONT_COLOR: string = '#FF97DE';
+export const FACEBOOK_FONT_COLOR: string = '#6697FD';
+export const TWITTER_FONT_COLOR: string = '#74C9FD';
+export const TWITCH_FONT_COLOR: string = '#CB93FF';
+export const PINTEREST_FONT_COLOR: string = '#FF7584';
+export const WHATSAPP_FONT_COLOR: string = '#4AC959';
+export const LINKEDIN_FONT_COLOR: string = '#78B5FD';
+export const SNAPCHAT_FONT_COLOR: string = '#FFFC00';
+export const YOUTUBE_FONT_COLOR: string = '#FCA4A4';
+
+export const SOCIAL_FONT_COLORS = {
+ INSTAGRAM: INSTAGRAM_FONT_COLOR,
+ FACEBOOK: FACEBOOK_FONT_COLOR,
+ TWITTER: TWITTER_FONT_COLOR,
+ TWITCH: TWITCH_FONT_COLOR,
+ PINTEREST: PINTEREST_FONT_COLOR,
+ WHATSAPP: WHATSAPP_FONT_COLOR,
+ LINKEDIN: LINKEDIN_FONT_COLOR,
+ SNAPCHAT: SNAPCHAT_FONT_COLOR,
+ YOUTUBE: YOUTUBE_FONT_COLOR,
+};