react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
20 lines (17 loc) • 594 B
JavaScript
;
import { processColorInitially } from '../../../Colors';
export function opacifyColor(color, opacity) {
'worklet';
const colorNumber = processColorInitially(color);
if (!colorNumber) {
return colorNumber === 0x00000000 ? 'transparent' : null;
}
const a = colorNumber >> 24 & 0xff;
const r = colorNumber >> 16 & 0xff;
const g = colorNumber >> 8 & 0xff;
const b = colorNumber & 0xff;
// Combine the existing alpha with the new opacity
const newAlpha = a / 255 * opacity;
return `rgba(${r}, ${g}, ${b}, ${newAlpha})`;
}
//# sourceMappingURL=colors.js.map