| /expo/home/constants/ |
| H A D | Themes.ts | 3 import Colors, { ColorTheme } from './Colors'; 10 text: Colors.light.text, 11 card: Colors.light.tabBar, 12 border: Colors.light.navBorderBottom, 13 primary: Colors.light.tintColor, 20 text: Colors.dark.text, 21 card: Colors.dark.tabBar, 22 border: Colors.dark.navBorderBottom, 23 primary: Colors.dark.tintColor,
|
| H A D | SharedStyles.ts | 3 import Colors from './Colors'; 11 backgroundColor: Colors.light.greyBackground, 14 color: Colors.light.greyText, 28 color: Colors.light.blackText, 32 color: Colors.light.greyText, 67 borderBottomColor: Colors.light.separator, 81 color: Colors.light.greyText, 85 color: Colors.light.blackText,
|
| /expo/apps/native-component-list/src/constants/ |
| H A D | Alerts.ts | 3 import Colors from './Colors'; 8 backgroundColor: Colors.errorBackground, 11 color: Colors.errorText, 17 backgroundColor: Colors.warningBackground, 20 color: Colors.warningText, 26 backgroundColor: Colors.noticeBackground, 29 color: Colors.noticeText,
|
| /expo/apps/native-component-list/src/navigation/ |
| H A D | StackConfig.tsx | 7 import { Colors } from '../constants'; 12 backgroundColor: Colors.headerBackground, 21 color: Colors.headerTitle, 24 backgroundColor: Colors.greyBackground, 38 headerTintColor: Colors.tintColor, 40 headerPressColorAndroid: Colors.tintColor, 48 color={Colors.tintColor}
|
| H A D | MainTabNavigator.tsx | 8 import { Colors } from '../constants'; 33 activeTintColor={Colors.tabIconSelected} 34 inactiveTintColor={Colors.tabIconDefault} 36 backgroundColor: Colors.tabBar, 38 borderTopColor: Colors.tabIconDefault, 43 tabBarActiveTintColor: Colors.tabIconSelected, 44 tabBarInactiveTintColor: Colors.tabIconDefault, 47 backgroundColor: Colors.tabBar,
|
| /expo/apps/native-component-list/src/screens/Contacts/ |
| H A D | ContactDetailList.tsx | 12 import Colors from '../../constants/Colors'; 24 underlayColor={Colors.listItemTouchableHighlight} 32 {onPress && <Ionicons size={24} color={Colors.tabIconDefault} name="ios-arrow-forward" />} 57 backgroundColor: Colors.greyBackground, 58 color: Colors.tintColor, 73 color: Colors.tintColor,
|
| H A D | ContactsListItem.tsx | 5 import Colors from '../../constants/Colors'; 20 <TouchableHighlight underlayColor={Colors.listItemTouchableHighlight} onPress={onPress}> 27 <Ionicons size={24} color={Colors.tabIconDefault} name="ios-arrow-forward" /> 44 color: Colors.tintColor,
|
| /expo/home/components/ |
| H A D | Text.tsx | 5 import Colors, { ColorTheme } from '../constants/Colors'; 13 type ThemedColors = keyof typeof Colors.light & keyof typeof Colors.dark; 23 return Colors[themeName][colorName];
|
| H A D | RefreshControl.tsx | 6 import Colors from '../constants/Colors'; 19 const color = theme.dark ? Colors.dark.refreshControl : Colors.light.refreshControl;
|
| H A D | NavigationScrollView.tsx | 9 import Colors, { ColorTheme } from '../constants/Colors'; 11 type ThemedColors = keyof typeof Colors.light & keyof typeof Colors.dark; 30 return Colors[themeName][colorName];
|
| H A D | Views.tsx | 6 import Colors, { ColorTheme } from '../constants/Colors'; 21 type ThemedColors = keyof typeof Colors.light & keyof typeof Colors.dark; 35 return Colors[themeName][colorName]; 47 return Colors[themeName][colorName];
|
| /expo/apps/native-component-list/src/components/ |
| H A D | Button.tsx | 12 import Colors from '../constants/Colors'; 38 underlayColor={Colors.highlightColor}> 60 backgroundColor: Colors.tintColor, 63 backgroundColor: Colors.disabled,
|
| H A D | SimpleActionDemo.tsx | 12 import Colors from '../constants/Colors'; 57 borderColor: Colors.border, 66 color: Colors.tintColor, 75 borderColor: Colors.errorBackground,
|
| H A D | TabIcon.tsx | 5 import { Colors } from '../constants'; 14 const color = focused ? Colors.tabIconSelected : Colors.tabIconDefault;
|
| /expo/apps/test-suite/ |
| H A D | AppNavigator.js | 5 import Colors from './constants/Colors'; 33 const color = focused ? Colors.activeTintColor : Colors.inactiveTintColor; 50 headerTintColor: Colors.tintColor,
|
| /expo/templates/expo-template-tabs/components/ |
| H A D | Themed.tsx | 8 import Colors from '@/constants/Colors'; 20 colorName: keyof typeof Colors.light & keyof typeof Colors.dark 28 return Colors[theme][colorName];
|
| /expo/apps/native-component-list/src/screens/WebBrowser/ |
| H A D | OpenBrowserAsyncDemo.tsx | 5 import Colors from '../../constants/Colors'; 30 name: `"${Colors.tintColor}"`, 31 value: Colors.tintColor, 49 name: `"${Colors.highlightColor}"`, 50 value: Colors.highlightColor, 66 { name: `"${Colors.headerTitle}"`, value: Colors.headerTitle },
|
| /expo/apps/native-component-list/src/screens/Image/ |
| H A D | ImageTintingScreen.tsx | 6 import { Colors } from '../../constants'; 18 description: 'tintColor={Colors.tintColor}', 19 tintColor: Colors.tintColor, 68 borderTopColor: Colors.border, 80 borderColor: Colors.border,
|
| H A D | ImageComparisonScreen.tsx | 7 import Colors from '../../constants/Colors'; 49 backgroundColor: Colors.greyBackground, 59 borderBottomColor: Colors.border,
|
| /expo/apps/native-component-list/src/screens/ |
| H A D | ButtonScreen.tsx | 5 import Colors from '../constants/Colors'; 14 <Button color={Colors.tintColor} title="Blurple" onPress={() => {}} />
|
| H A D | StoreReview.tsx | 7 import Colors from '../constants/Colors'; 64 backgroundColor: Colors.greyBackground, 70 color: Colors.tintColor, 76 color: Colors.secondaryText, 80 backgroundColor: Colors.disabled,
|
| H A D | TouchableBounceScreen.native.tsx | 7 import Colors from '../constants/Colors'; 15 backgroundColor: Colors.tintColor,
|
| /expo/packages/@expo/prebuild-config/src/plugins/unversioned/expo-splash-screen/__tests__/ |
| H A D | withAndroidSplashStyles-test.ts | 49 const xml = AndroidConfig.Colors.getColorsAsObject( 64 const xml = AndroidConfig.Colors.getColorsAsObject( 66 AndroidConfig.Colors.getObjectAsColorsXml({
|
| /expo/templates/expo-template-tabs/app/(tabs)/ |
| H A D | _layout.tsx | 5 import Colors from '@/constants/Colors'; 23 tabBarActiveTintColor: Colors[colorScheme ?? 'light'].tint, 37 color={Colors[colorScheme ?? 'light'].text}
|
| /expo/apps/native-component-list/src/components/FunctionDemo/ |
| H A D | ActionButton.tsx | 5 import Colors from '../../constants/Colors'; 32 backgroundColor: Colors.tintColor,
|