/** @module @airtable/blocks/ui: colors */ /** */ import { ObjectValues } from './private_utils'; /** * Airtable color names. * * To get the corresponding RGB or HEX values, use * {@link getRgbForColor} or {@link getHexForColor}. * * You can also pass these values into the color props for components: * * @example * ```js * import {Box, colors} from '@airtable/blocks/ui'; * * * ``` * * @docsPath UI/utils/colors */ declare const Colors: { /** @docsPath UI/utils/Colors */ BLUE_BRIGHT: "blueBright"; /** @docsPath UI/utils/Colors */ BLUE_DARK_1: "blueDark1"; /** @docsPath UI/utils/Colors */ BLUE_LIGHT_1: "blueLight1"; /** @docsPath UI/utils/Colors */ BLUE_LIGHT_2: "blueLight2"; /** @docsPath UI/utils/Colors */ BLUE: "blue"; /** @docsPath UI/utils/Colors */ CYAN_BRIGHT: "cyanBright"; /** @docsPath UI/utils/Colors */ CYAN_DARK_1: "cyanDark1"; /** @docsPath UI/utils/Colors */ CYAN_LIGHT_1: "cyanLight1"; /** @docsPath UI/utils/Colors */ CYAN_LIGHT_2: "cyanLight2"; /** @docsPath UI/utils/Colors */ CYAN: "cyan"; /** @docsPath UI/utils/Colors */ GRAY_BRIGHT: "grayBright"; /** @docsPath UI/utils/Colors */ GRAY_DARK_1: "grayDark1"; /** @docsPath UI/utils/Colors */ GRAY_LIGHT_1: "grayLight1"; /** @docsPath UI/utils/Colors */ GRAY_LIGHT_2: "grayLight2"; /** @docsPath UI/utils/Colors */ GRAY: "gray"; /** @docsPath UI/utils/Colors */ GREEN_BRIGHT: "greenBright"; /** @docsPath UI/utils/Colors */ GREEN_DARK_1: "greenDark1"; /** @docsPath UI/utils/Colors */ GREEN_LIGHT_1: "greenLight1"; /** @docsPath UI/utils/Colors */ GREEN_LIGHT_2: "greenLight2"; /** @docsPath UI/utils/Colors */ GREEN: "green"; /** @docsPath UI/utils/Colors */ ORANGE_BRIGHT: "orangeBright"; /** @docsPath UI/utils/Colors */ ORANGE_DARK_1: "orangeDark1"; /** @docsPath UI/utils/Colors */ ORANGE_LIGHT_1: "orangeLight1"; /** @docsPath UI/utils/Colors */ ORANGE_LIGHT_2: "orangeLight2"; /** @docsPath UI/utils/Colors */ ORANGE: "orange"; /** @docsPath UI/utils/Colors */ PINK_BRIGHT: "pinkBright"; /** @docsPath UI/utils/Colors */ PINK_DARK_1: "pinkDark1"; /** @docsPath UI/utils/Colors */ PINK_LIGHT_1: "pinkLight1"; /** @docsPath UI/utils/Colors */ PINK_LIGHT_2: "pinkLight2"; /** @docsPath UI/utils/Colors */ PINK: "pink"; /** @docsPath UI/utils/Colors */ PURPLE_BRIGHT: "purpleBright"; /** @docsPath UI/utils/Colors */ PURPLE_DARK_1: "purpleDark1"; /** @docsPath UI/utils/Colors */ PURPLE_LIGHT_1: "purpleLight1"; /** @docsPath UI/utils/Colors */ PURPLE_LIGHT_2: "purpleLight2"; /** @docsPath UI/utils/Colors */ PURPLE: "purple"; /** @docsPath UI/utils/Colors */ RED_BRIGHT: "redBright"; /** @docsPath UI/utils/Colors */ RED_DARK_1: "redDark1"; /** @docsPath UI/utils/Colors */ RED_LIGHT_1: "redLight1"; /** @docsPath UI/utils/Colors */ RED_LIGHT_2: "redLight2"; /** @docsPath UI/utils/Colors */ RED: "red"; /** @docsPath UI/utils/Colors */ TEAL_BRIGHT: "tealBright"; /** @docsPath UI/utils/Colors */ TEAL_DARK_1: "tealDark1"; /** @docsPath UI/utils/Colors */ TEAL_LIGHT_1: "tealLight1"; /** @docsPath UI/utils/Colors */ TEAL_LIGHT_2: "tealLight2"; /** @docsPath UI/utils/Colors */ TEAL: "teal"; /** @docsPath UI/utils/Colors */ YELLOW_BRIGHT: "yellowBright"; /** @docsPath UI/utils/Colors */ YELLOW_DARK_1: "yellowDark1"; /** @docsPath UI/utils/Colors */ YELLOW_LIGHT_1: "yellowLight1"; /** @docsPath UI/utils/Colors */ YELLOW_LIGHT_2: "yellowLight2"; /** @docsPath UI/utils/Colors */ YELLOW: "yellow"; }; export default Colors; /** * A color name from the list of {@link Colors}. */ export declare type Color = ObjectValues; /** @hidden */ export declare const rgbTuplesByColor: { blueBright: number[]; blueDark1: number[]; blueLight1: number[]; blueLight2: number[]; blue: number[]; cyanBright: number[]; cyanDark1: number[]; cyanLight1: number[]; cyanLight2: number[]; cyan: number[]; grayBright: number[]; grayDark1: number[]; grayLight1: number[]; grayLight2: number[]; gray: number[]; greenBright: number[]; greenDark1: number[]; greenLight1: number[]; greenLight2: number[]; green: number[]; orangeBright: number[]; orangeDark1: number[]; orangeLight1: number[]; orangeLight2: number[]; orange: number[]; pinkBright: number[]; pinkDark1: number[]; pinkLight1: number[]; pinkLight2: number[]; pink: number[]; purpleBright: number[]; purpleDark1: number[]; purpleLight1: number[]; purpleLight2: number[]; purple: number[]; redBright: number[]; redDark1: number[]; redLight1: number[]; redLight2: number[]; red: number[]; tealBright: number[]; tealDark1: number[]; tealLight1: number[]; tealLight2: number[]; teal: number[]; yellowBright: number[]; yellowDark1: number[]; yellowLight1: number[]; yellowLight2: number[]; yellow: number[]; };