// @ts-nocheck /** * Copyright (c) Nicolas Gallagher. * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import normalizeColor from '@tamagui/normalize-css-color' export const processColor = (color?: string | number): number | null => { if (color === undefined || color === null) { return color } // convert number and hex let int32Color = normalizeColor(color) if (int32Color === undefined || int32Color === null) { return undefined } int32Color = ((int32Color << 24) | (int32Color >>> 8)) >>> 0 return int32Color }