UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

78 lines (77 loc) 2.19 kB
import { ColorValue } from "react-native"; export declare const defaultColorLight: { background1: string; background2: string; background3: string; background4: string; borderLight: string; borderDefault: string; borderDark: string; borderHighlight: string; textPrimary: string; textSecondary: string; textTertiary: string; textDisabled: string; textWhite: string; textHighlight: string; iconPrimary: string; iconSecondary: string; iconTertiary: string; iconWhite: string; iconHighlight: string; primaryButtonBackground: string; primaryButtonIcon: string; primaryButtonText: string; secondaryButtonBackground: string; secondaryButtonIcon: string; secondaryButtonText: string; linkBackground: string; fabButtonBackground: string; fabButtonIcon: string; whiteHover: string; whitePressed: string; sendBubbleBackground: string; sendBubbleText: string; sendBubbleTextHighlight: string; sendBubbleLink: string; sendBubbleTimestamp: string; sendBubbleIcon: string; receiveBubbleBackground: string; receiveBubbleText: string; receiveBubbleTextHighlight: string; receiveBubbleLink: string; receiveBubbleTimestamp: string; receiveBubbleIcon: string; staticBlack: string; staticWhite: string; info: string; warning: string; success: string; error: string; neutral50: string; neutral100: string; neutral200: string; neutral300: string; neutral400: string; neutral500: string; neutral600: string; neutral700: string; neutral800: string; neutral900: string; extendedPrimary50: string; extendedPrimary100: string; extendedPrimary200: string; extendedPrimary300: string; extendedPrimary400: string; extendedPrimary500: string; extendedPrimary600: string; extendedPrimary700: string; extendedPrimary800: string; extendedPrimary900: string; primary: string; }; type EachColorValue<T extends typeof defaultColorLight> = { [P in keyof T]: ColorValue; }; export type Color = EachColorValue<typeof defaultColorLight>; export {};