11import type { KnownRoutes } from '@app/registries/routeManifest.generated'
22import { styled } from 'nativewind'
3- import { Text as RNText , View as RNView } from 'react-native'
3+ import { Text as RNText , View as RNView , ScrollView as RNScrollView } from 'react-native'
44import { Link as UniversalLink } from '@green-stack/navigation/Link'
55import { UniversalLinkProps } from '@green-stack/navigation/Link.types'
66import { Image as UniversalImage } from '@green-stack/components/Image'
@@ -13,20 +13,20 @@ export const Image = styled(UniversalImage, '')
1313
1414/* --- Typography ------------------------------------------------------------------------------ */
1515
16- export const H1 = styled ( RNText , 'font-bold text-2xl text-primary-500 ' )
17- export const H2 = styled ( RNText , 'font-bold text-xl text-primary-500 ' )
18- export const H3 = styled ( RNText , 'font-bold text-lg text-primary-500 ' )
16+ export const H1 = styled ( RNText , 'font-bold text-2xl text-primary-100 ' )
17+ export const H2 = styled ( RNText , 'font-bold text-xl text-primary-100 ' )
18+ export const H3 = styled ( RNText , 'font-bold text-lg text-primary-100 ' )
1919
2020export const P = styled ( RNText , 'text-base' )
2121
2222/* --- Fix for Next Link ----------------------------------------------------------------------- */
2323
2424export const Link = < HREF extends KnownRoutes > ( props : UniversalLinkProps < HREF > ) => {
25- const StyledLink = styled ( UniversalLink , 'text-blue-500 underline' ) // @ts -ignore
25+ const StyledLink = styled ( UniversalLink , 'text-blue-300 underline' ) // @ts -ignore
2626 return < StyledLink { ...props } />
2727}
2828
29- export const LinkText = styled ( RNText , 'text-blue-500 underline' )
29+ export const LinkText = styled ( RNText , 'text-blue-300 underline' )
3030
3131export const TextLink = ( props : Omit < React . ComponentProps < typeof UniversalLink > , 'className' > & { className ?: string } ) => {
3232 const { className, style, children, ...universalLinkProps } = props
0 commit comments