Home
last modified time | relevance | path

Searched refs:Colors (Results 1 – 25 of 150) sorted by relevance

123456

/expo/home/constants/
H A DThemes.ts3 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 DSharedStyles.ts3 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 DAlerts.ts3 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 DStackConfig.tsx7 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 DMainTabNavigator.tsx8 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 DContactDetailList.tsx12 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 DContactsListItem.tsx5 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 DText.tsx5 import Colors, { ColorTheme } from '../constants/Colors';
13 type ThemedColors = keyof typeof Colors.light & keyof typeof Colors.dark;
23 return Colors[themeName][colorName];
H A DRefreshControl.tsx6 import Colors from '../constants/Colors';
19 const color = theme.dark ? Colors.dark.refreshControl : Colors.light.refreshControl;
H A DNavigationScrollView.tsx9 import Colors, { ColorTheme } from '../constants/Colors';
11 type ThemedColors = keyof typeof Colors.light & keyof typeof Colors.dark;
30 return Colors[themeName][colorName];
H A DViews.tsx6 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 DButton.tsx12 import Colors from '../constants/Colors';
38 underlayColor={Colors.highlightColor}>
60 backgroundColor: Colors.tintColor,
63 backgroundColor: Colors.disabled,
H A DSimpleActionDemo.tsx12 import Colors from '../constants/Colors';
57 borderColor: Colors.border,
66 color: Colors.tintColor,
75 borderColor: Colors.errorBackground,
H A DTabIcon.tsx5 import { Colors } from '../constants';
14 const color = focused ? Colors.tabIconSelected : Colors.tabIconDefault;
/expo/apps/test-suite/
H A DAppNavigator.js5 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 DThemed.tsx8 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 DOpenBrowserAsyncDemo.tsx5 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 DImageTintingScreen.tsx6 import { Colors } from '../../constants';
18 description: 'tintColor={Colors.tintColor}',
19 tintColor: Colors.tintColor,
68 borderTopColor: Colors.border,
80 borderColor: Colors.border,
H A DImageComparisonScreen.tsx7 import Colors from '../../constants/Colors';
49 backgroundColor: Colors.greyBackground,
59 borderBottomColor: Colors.border,
/expo/apps/native-component-list/src/screens/
H A DButtonScreen.tsx5 import Colors from '../constants/Colors';
14 <Button color={Colors.tintColor} title="Blurple" onPress={() => {}} />
H A DStoreReview.tsx7 import Colors from '../constants/Colors';
64 backgroundColor: Colors.greyBackground,
70 color: Colors.tintColor,
76 color: Colors.secondaryText,
80 backgroundColor: Colors.disabled,
H A DTouchableBounceScreen.native.tsx7 import Colors from '../constants/Colors';
15 backgroundColor: Colors.tintColor,
/expo/packages/@expo/prebuild-config/src/plugins/unversioned/expo-splash-screen/__tests__/
H A DwithAndroidSplashStyles-test.ts49 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.tsx5 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 DActionButton.tsx5 import Colors from '../../constants/Colors';
32 backgroundColor: Colors.tintColor,

123456