diff options
| author | Ashm Walia <40498934+ashmgarv@users.noreply.github.com> | 2021-01-12 13:35:33 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-12 16:35:33 -0500 |
| commit | c758389ad2ebe98196d4618ec08dbf2b24d95bfa (patch) | |
| tree | 1db37ccbe08d65dc689e0e9fd733aaf711681431 /src/screens/onboarding/Login.tsx | |
| parent | 251c44edf33dd303ad5255cca95174eb72428543 (diff) | |
[TMA 472] Added option to be added to Taggs wait list (#168)
* Added screens to add to waitlist and a page to display on success of the same
* Incorporated small comment
Diffstat (limited to 'src/screens/onboarding/Login.tsx')
| -rw-r--r-- | src/screens/onboarding/Login.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/screens/onboarding/Login.tsx b/src/screens/onboarding/Login.tsx index 006b38db..d1717fc1 100644 --- a/src/screens/onboarding/Login.tsx +++ b/src/screens/onboarding/Login.tsx @@ -15,7 +15,11 @@ import { import {fcmService} from '../../services'; import {OnboardingStackParams} from '../../routes/onboarding'; import {Background, TaggInput, SubmitButton} from '../../components'; -import {usernameRegex, LOGIN_ENDPOINT} from '../../constants'; +import { + usernameRegex, + LOGIN_ENDPOINT, + TAGG_LIGHT_PURPLE, +} from '../../constants'; import AsyncStorage from '@react-native-community/async-storage'; import {BackgroundGradientType, UserType} from '../../types'; import {useDispatch} from 'react-redux'; @@ -351,7 +355,7 @@ const styles = StyleSheet.create({ }, newUser: { fontSize: 14, - color: '#f4ddff', + color: TAGG_LIGHT_PURPLE, }, getStarted: { fontSize: 14, |
