Home
last modified time | relevance | path

Searched refs:opacity (Results 1 – 25 of 553) sorted by relevance

12345678910>>...23

/expo/packages/@expo/metro-runtime/src/error-overlay/UI/
H A DLogBoxStyle.ts10 return `rgba(0, 0, 0, ${opacity == null ? 1 : opacity})`;
15 return `rgba(69, 69, 69, ${opacity == null ? 1 : opacity})`;
19 return `rgba(34, 34, 34, ${opacity == null ? 1 : opacity})`;
23 return `rgba(250, 186, 48, ${opacity == null ? 1 : opacity})`;
27 return `rgba(224, 167, 8, ${opacity == null ? 1 : opacity})`;
31 return `rgba(243, 83, 105, ${opacity == null ? 1 : opacity})`;
35 return `rgba(208, 75, 95, ${opacity == null ? 1 : opacity})`;
39 return `rgba(243, 83, 105, ${opacity == null ? 1 : opacity})`;
43 return `rgba(208, 75, 95, ${opacity == null ? 1 : opacity})`;
47 return `rgba(119, 119, 119, ${opacity == null ? 1 : opacity})`;
[all …]
/expo/packages/@expo/metro-runtime/build/error-overlay/UI/
H A DLogBoxStyle.js12 return `rgba(0, 0, 0, ${opacity == null ? 1 : opacity})`;
17 return `rgba(69, 69, 69, ${opacity == null ? 1 : opacity})`;
21 return `rgba(34, 34, 34, ${opacity == null ? 1 : opacity})`;
25 return `rgba(250, 186, 48, ${opacity == null ? 1 : opacity})`;
29 return `rgba(224, 167, 8, ${opacity == null ? 1 : opacity})`;
33 return `rgba(243, 83, 105, ${opacity == null ? 1 : opacity})`;
37 return `rgba(208, 75, 95, ${opacity == null ? 1 : opacity})`;
41 return `rgba(243, 83, 105, ${opacity == null ? 1 : opacity})`;
45 return `rgba(208, 75, 95, ${opacity == null ? 1 : opacity})`;
53 return `rgba(252, 176, 29, ${opacity == null ? 1 : opacity})`;
[all …]
H A DLogBoxStyle.d.ts8 export declare function getBackgroundColor(opacity?: number): string;
11 export declare function getWarningColor(opacity?: number): string;
12 export declare function getWarningDarkColor(opacity?: number): string;
13 export declare function getFatalColor(opacity?: number): string;
14 export declare function getFatalDarkColor(opacity?: number): string;
15 export declare function getErrorColor(opacity?: number): string;
16 export declare function getErrorDarkColor(opacity?: number): string;
17 export declare function getLogColor(opacity?: number): string;
19 export declare function getDividerColor(opacity?: number): string;
20 export declare function getHighlightColor(opacity?: number): string;
[all …]
H A DLogBoxStyle.js.map1opacity?: number): string {\n return `rgba(0, 0, 0, ${opacity == null ? 1 : opacity})`;\n // ret…
/expo/packages/expo-blur/build/
H A DgetBackgroundColor.js2 const opacity = intensity / 100;
8 return `rgba(25,25,25,${opacity * 0.78})`;
14 return `rgba(249,249,249,${opacity * 0.78})`;
18 return `rgba(255,255,255,${opacity * 0.3})`;
20 return `rgba(179,179,179,${opacity * 0.82})`;
22 return `rgba(199,199,199,${opacity * 0.97})`;
24 return `rgba(255,255,255,${opacity * 0.75})`;
32 return `rgba(37,37,37,${opacity * 0.9})`;
34 return `rgba(37,37,37,${opacity * 0.7})`;
36 return `rgba(37,37,37,${opacity * 0.55})`;
[all …]
H A DgetBackgroundColor.js.map1opacity = intensity / 100;\n switch (tint) {\n // From Apple iOS 14 Sketch Kit - https://devel…
/expo/packages/expo-blur/src/
H A DgetBackgroundColor.ts4 const opacity = intensity / 100; constant
10 return `rgba(25,25,25,${opacity * 0.78})`;
16 return `rgba(249,249,249,${opacity * 0.78})`;
21 return `rgba(255,255,255,${opacity * 0.3})`;
23 return `rgba(179,179,179,${opacity * 0.82})`;
25 return `rgba(199,199,199,${opacity * 0.97})`;
27 return `rgba(255,255,255,${opacity * 0.75})`;
35 return `rgba(37,37,37,${opacity * 0.9})`;
37 return `rgba(37,37,37,${opacity * 0.7})`;
39 return `rgba(37,37,37,${opacity * 0.55})`;
[all …]
/expo/ios/vendored/sdk47/react-native-svg/apple/Brushes/
H A DABI47_0_0RNSVGBrush.mm19 - (void)paint:(CGContextRef)context opacity:(CGFloat)opacity painter:(ABI47_0_0RNSVGPainter *)paint…
23 - (BOOL)applyFillColor:(CGContextRef)context opacity:(CGFloat)opacity
28 - (BOOL)applyStrokeColor:(CGContextRef)context opacity:(CGFloat)opacity
33 - (CGColorRef)getColorWithOpacity:(CGFloat)opacity
38 - (void)paint:(CGContextRef)context opacity:(CGFloat)opacity painter:(ABI47_0_0RNSVGPainter *)paint…
H A DABI47_0_0RNSVGBrush.h28 - (BOOL)applyFillColor:(CGContextRef)context opacity:(CGFloat)opacity;
30 - (BOOL)applyStrokeColor:(CGContextRef)context opacity:(CGFloat)opacity;
32 - (CGColorRef)getColorWithOpacity:(CGFloat)opacity;
39 - (void)paint:(CGContextRef)context opacity:(CGFloat)opacity painter:(ABI47_0_0RNSVGPainter *)paint…
H A DABI47_0_0RNSVGSolidColorBrush.mm48 - (CGColorRef)getColorWithOpacity:(CGFloat)opacity
51 CGColorRef color = CGColorCreateCopyWithAlpha(baseColor, opacity * CGColorGetAlpha(baseColor));
55 - (BOOL)applyFillColor:(CGContextRef)context opacity:(CGFloat)opacity
57 CGColorRef color = [self getColorWithOpacity:opacity];
63 - (BOOL)applyStrokeColor:(CGContextRef)context opacity:(CGFloat)opacity
65 CGColorRef color = [self getColorWithOpacity:opacity];
H A DABI47_0_0RNSVGContextBrush.mm40 - (BOOL)applyFillColor:(CGContextRef)context opacity:(CGFloat)opacity
55 fillColor = [brush applyFillColor:context opacity:opacity];
61 - (BOOL)applyStrokeColor:(CGContextRef)context opacity:(CGFloat)opacity
76 strokeColor = [brush applyStrokeColor:context opacity:opacity];
/expo/ios/vendored/sdk49/react-native-svg/apple/Brushes/
H A DABI49_0_0RNSVGBrush.mm19 - (void)paint:(CGContextRef)context opacity:(CGFloat)opacity painter:(ABI49_0_0RNSVGPainter *)paint…
23 - (BOOL)applyFillColor:(CGContextRef)context opacity:(CGFloat)opacity
28 - (BOOL)applyStrokeColor:(CGContextRef)context opacity:(CGFloat)opacity
33 - (CGColorRef)getColorWithOpacity:(CGFloat)opacity
38 - (void)paint:(CGContextRef)context opacity:(CGFloat)opacity painter:(ABI49_0_0RNSVGPainter *)paint…
H A DABI49_0_0RNSVGBrush.h28 - (BOOL)applyFillColor:(CGContextRef)context opacity:(CGFloat)opacity;
30 - (BOOL)applyStrokeColor:(CGContextRef)context opacity:(CGFloat)opacity;
32 - (CGColorRef)getColorWithOpacity:(CGFloat)opacity;
39 - (void)paint:(CGContextRef)context opacity:(CGFloat)opacity painter:(ABI49_0_0RNSVGPainter *)paint…
H A DABI49_0_0RNSVGSolidColorBrush.mm48 - (CGColorRef)getColorWithOpacity:(CGFloat)opacity
51 CGColorRef color = CGColorCreateCopyWithAlpha(baseColor, opacity * CGColorGetAlpha(baseColor));
55 - (BOOL)applyFillColor:(CGContextRef)context opacity:(CGFloat)opacity
57 CGColorRef color = [self getColorWithOpacity:opacity];
63 - (BOOL)applyStrokeColor:(CGContextRef)context opacity:(CGFloat)opacity
65 CGColorRef color = [self getColorWithOpacity:opacity];
H A DABI49_0_0RNSVGContextBrush.mm40 - (BOOL)applyFillColor:(CGContextRef)context opacity:(CGFloat)opacity
55 fillColor = [brush applyFillColor:context opacity:opacity];
61 - (BOOL)applyStrokeColor:(CGContextRef)context opacity:(CGFloat)opacity
76 strokeColor = [brush applyStrokeColor:context opacity:opacity];
/expo/ios/vendored/unversioned/react-native-svg/apple/Brushes/
H A DRNSVGBrush.mm19 - (void)paint:(CGContextRef)context opacity:(CGFloat)opacity painter:(RNSVGPainter *)painter bounds…
23 - (BOOL)applyFillColor:(CGContextRef)context opacity:(CGFloat)opacity
28 - (BOOL)applyStrokeColor:(CGContextRef)context opacity:(CGFloat)opacity
33 - (CGColorRef)getColorWithOpacity:(CGFloat)opacity
38 - (void)paint:(CGContextRef)context opacity:(CGFloat)opacity painter:(RNSVGPainter *)painter
H A DRNSVGBrush.h28 - (BOOL)applyFillColor:(CGContextRef)context opacity:(CGFloat)opacity;
30 - (BOOL)applyStrokeColor:(CGContextRef)context opacity:(CGFloat)opacity;
32 - (CGColorRef)getColorWithOpacity:(CGFloat)opacity;
39 - (void)paint:(CGContextRef)context opacity:(CGFloat)opacity painter:(RNSVGPainter *)painter bounds…
H A DRNSVGSolidColorBrush.mm48 - (CGColorRef)getColorWithOpacity:(CGFloat)opacity
51 CGColorRef color = CGColorCreateCopyWithAlpha(baseColor, opacity * CGColorGetAlpha(baseColor));
55 - (BOOL)applyFillColor:(CGContextRef)context opacity:(CGFloat)opacity
57 CGColorRef color = [self getColorWithOpacity:opacity];
63 - (BOOL)applyStrokeColor:(CGContextRef)context opacity:(CGFloat)opacity
65 CGColorRef color = [self getColorWithOpacity:opacity];
/expo/ios/vendored/sdk48/react-native-svg/apple/Brushes/
H A DABI48_0_0RNSVGBrush.mm19 - (void)paint:(CGContextRef)context opacity:(CGFloat)opacity painter:(ABI48_0_0RNSVGPainter *)paint…
23 - (BOOL)applyFillColor:(CGContextRef)context opacity:(CGFloat)opacity
28 - (BOOL)applyStrokeColor:(CGContextRef)context opacity:(CGFloat)opacity
33 - (CGColorRef)getColorWithOpacity:(CGFloat)opacity
38 - (void)paint:(CGContextRef)context opacity:(CGFloat)opacity painter:(ABI48_0_0RNSVGPainter *)paint…
H A DABI48_0_0RNSVGBrush.h28 - (BOOL)applyFillColor:(CGContextRef)context opacity:(CGFloat)opacity;
30 - (BOOL)applyStrokeColor:(CGContextRef)context opacity:(CGFloat)opacity;
32 - (CGColorRef)getColorWithOpacity:(CGFloat)opacity;
39 - (void)paint:(CGContextRef)context opacity:(CGFloat)opacity painter:(ABI48_0_0RNSVGPainter *)paint…
H A DABI48_0_0RNSVGSolidColorBrush.mm48 - (CGColorRef)getColorWithOpacity:(CGFloat)opacity
51 CGColorRef color = CGColorCreateCopyWithAlpha(baseColor, opacity * CGColorGetAlpha(baseColor));
55 - (BOOL)applyFillColor:(CGContextRef)context opacity:(CGFloat)opacity
57 CGColorRef color = [self getColorWithOpacity:opacity];
63 - (BOOL)applyStrokeColor:(CGContextRef)context opacity:(CGFloat)opacity
65 CGColorRef color = [self getColorWithOpacity:opacity];
/expo/packages/expo-image/src/web/
H A DimageStyles.tsx7 opacity: 0;
10 opacity: 1;
13 opacity: 0;
31 opacity: 0;
35 opacity:1;
39 opacity: 0;
56 opacity: 0;
60 opacity:1;
64 opacity: 0;
85 opacity:1;
[all …]
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/components/view/
H A DABI49_0_0ViewPropsInterpolation.h33 interpolatedProps->opacity = oldViewProps->opacity + in interpolateViewProps()
34 (newViewProps->opacity - oldViewProps->opacity) * animationProgress; in interpolateViewProps()
48 interpolatedProps->rawProps["opacity"] = interpolatedProps->opacity; in interpolateViewProps()
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/components/view/
H A DABI48_0_0ViewPropsInterpolation.h33 interpolatedProps->opacity = oldViewProps->opacity + in interpolateViewProps()
34 (newViewProps->opacity - oldViewProps->opacity) * animationProgress; in interpolateViewProps()
48 interpolatedProps->rawProps["opacity"] = interpolatedProps->opacity; in interpolateViewProps()
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/components/view/
H A DABI47_0_0ViewPropsInterpolation.h33 interpolatedProps->opacity = oldViewProps->opacity + in interpolateViewProps()
34 (newViewProps->opacity - oldViewProps->opacity) * animationProgress; in interpolateViewProps()
48 interpolatedProps->rawProps["opacity"] = interpolatedProps->opacity; in interpolateViewProps()

12345678910>>...23