diff options
author | Ivan Chen <ivan@thetaggid.com> | 2021-03-05 17:21:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-05 17:21:20 -0500 |
commit | 1519e67cb495282ad436796abfa3236ceb31cb10 (patch) | |
tree | 87956d553704f3f42d86fe0f8db68e572ac817c5 /src/constants/constants.ts | |
parent | b1dee65ee7bb8e120fc38a495f4027905d300650 (diff) | |
parent | 10aa8805038f07b1affdcfa1b924810a2c89bee1 (diff) |
Merge pull request #242 from ankit-thanekar007/tma-634-badge-selection-screen
Badge Screen UI Changes
Diffstat (limited to 'src/constants/constants.ts')
-rw-r--r-- | src/constants/constants.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/constants/constants.ts b/src/constants/constants.ts index 14bff6a7..72eb1b57 100644 --- a/src/constants/constants.ts +++ b/src/constants/constants.ts @@ -79,6 +79,14 @@ export const NOTIFICATION_GRADIENT = [ 'rgba(247, 248, 248, 1)', 'rgba(247, 248, 248, 0)', ]; +export const BADGE_GRADIENT_FIRST = [ + 'rgba(86, 63, 51, 1)', + 'rgba(236, 32, 39, 1)', +]; +export const BADGE_GRADIENT_REST = [ + 'rgba(78, 54, 41, 1)', + 'rgba(236, 32, 39, 1)', +]; export const SOCIAL_FONT_COLORS = { INSTAGRAM: INSTAGRAM_FONT_COLOR, |