paul_color.h

Includes:
<stdint.h>
<stddef.h>
<stdbool.h>
<math.h>
<stdlib.h>

Introduction

Color manipulation library for C/C++.

Discussion

Implementation is included when PAUL_COLOR_IMPLEMENTATION or PAUL_IMPLEMENTATION is defined.

Updated:
Monday, September 29, 2025


Functions

cmyk

Creates a color from CMYK components.

cmyk_to_rgba

Converts CMYK color space to RGBA.

color_achromatopsia

Simulates achromatopsia (complete color blindness).

color_adjust_blacks

Adjusts very dark areas of a color.

color_adjust_brightness

Adjusts the brightness of a color.

color_adjust_clarity

Enhances local contrast (clarity/structure).

color_adjust_contrast

Adjusts the contrast of a color.

color_adjust_exposure

Adjusts the exposure of a color in stops.

color_adjust_gamma

Applies gamma correction to a color.

color_adjust_highlights

Adjusts highlight areas of a color.

color_adjust_shadows

Adjusts shadow areas of a color.

color_adjust_temperature

Adjusts the color temperature of a color.

color_adjust_vibrance

Applies smart saturation adjustment.

color_adjust_whites

Adjusts very bright areas of a color.

color_adobe_rgb_to_srgb

Converts Adobe RGB color space to sRGB.

color_alpha_blend

Performs standard alpha blending (Porter-Duff "over" operation).

color_analogous

Generates analogous colors (adjacent hues on the color wheel).

color_brightness

Calculates the simple average brightness of a color.

color_cmp

Compares two colors for exact equality.

color_color_balance

Applies color balance adjustment to a color.

color_color_burn

Applies color burn blending mode.

color_color_dodge

Applies color dodge blending mode.

color_complement

Gets the complementary color (opposite hue).

color_contrast_ratio

Calculates the WCAG contrast ratio between two colors.

color_curves

Applies curves adjustment to a color using lookup tables.

color_darken

Selects the darker of two colors for each channel.

color_delta_e_2000

Calculates the color difference using the CIEDE2000 formula (Delta E CIEDE2000).

color_delta_e_76

Calculates the color difference using the CIE76 formula (Delta E CIE76).

color_delta_e_94

Calculates the color difference using the CIE94 formula (Delta E CIE94).

color_desaturate

Decreases the saturation of a color.

color_deuteranopia

Simulates deuteranopia (green-blind) color vision deficiency.

color_difference

Calculates the absolute difference between two colors.

color_distance

Calculates the Euclidean distance between two colors in RGB space.

color_distance_lab

Calculates the Euclidean distance between two colors in CIELAB color space.

color_dither_floyd_steinberg

Applies Floyd-Steinberg dithering to quantize a color against a palette.

color_dither_ordered

Applies ordered dithering to quantize a color against a palette.

color_dominant_channel

Determines the dominant color channel.

color_energy

Calculates the total energy of a color.

color_exclusion

Applies exclusion blending mode.

color_fast_grayscale

Converts a color to grayscale using fast integer-only arithmetic.

color_fast_invert

Inverts RGB channels using fast bitwise operations.

color_fast_sepia

Applies a sepia tone effect using fast integer arithmetic.

color_gradient

Generates a linear gradient between two colors.

color_grayscale

Converts a color to grayscale.

color_hard_light

Applies hard light blending mode.

color_hue

Gets the hue of a color in degrees.

color_hue_shift

Shifts the hue of a color by a specified number of degrees.

color_invert

Inverts the RGB channels of a color.

color_is_cool

Determines if a color is cool (bluish/greenish).

color_is_dark

Determines if a color is considered dark.

color_is_grayscale

Checks if a color is effectively grayscale.

color_is_similar

Checks if two colors are similar within a threshold.

color_is_warm

Determines if a color is warm (reddish/yellowish).

color_lerp

Linearly interpolates between two colors.

color_levels

Applies levels adjustment to a color (black point, white point, gamma).

color_lift_gamma_gain

Applies lift-gamma-gain color grading to a color.

color_lighten

Selects the lighter of two colors for each channel.

color_luminance

Calculates the perceptual luminance of a color.

color_match_closest

Finds the closest color in a palette to the target color.

color_monochromatic

Generates monochromatic colors (same hue, varying saturation/value).

color_multiply

Multiplies two colors together.

color_overlay

Applies overlay blending mode.

color_posterize

Applies posterization effect by reducing the number of tonal levels.

color_premultiply_alpha

Premultiplies RGB channels by alpha.

color_prophoto_to_srgb

Converts ProPhoto RGB color space to sRGB.

color_protanopia

Simulates protanopia (red-blind) color vision deficiency.

color_purity

Calculates the color purity (saturation).

color_quantize

Quantizes a color to reduce the number of bits per channel.

color_rec709_to_rec2020

Converts Rec.709 (standard HD) color space to Rec.2020 (ultra HD/HDR).

color_relative_luminance

Calculates the relative luminance for WCAG accessibility compliance.

color_saturate

Increases the saturation of a color.

color_saturation

Gets the saturation level of a color.

color_screen

Screens two colors together.

color_selective_color

Applies selective color adjustment to specific color ranges.

color_shadow_highlight

Adjusts shadow and highlight regions of a color.

color_shadow_midtone_highlight

Applies shadow-midtone-highlight color grading using luminance-based weighting.

color_similarity

Calculates the similarity between two colors (0.0-1.0).

color_soft_light

Applies soft light blending mode.

color_split_complementary

Generates split-complementary colors.

color_temperature_estimate

Estimates the color temperature in Kelvin.

color_tetradic

Generates tetradic colors (rectangle scheme on the color wheel).

color_tint

Applies a tint adjustment to a color.

color_triadic

Generates triadic colors (120° apart on the color wheel).

color_tritanopia

Simulates tritanopia (blue-blind) color vision deficiency.

color_unpremultiply_alpha

Unpremultiplies RGB channels by alpha.

color_vibrance

Applies vibrance adjustment (smart saturation) to a color.

color_wcag_aa_compliant

Checks if two colors meet WCAG AA contrast requirements.

color_wcag_aaa_compliant

Checks if two colors meet WCAG AAA contrast requirements.

hsl

Creates an opaque color from HSL components.

hsla

Creates a color from HSLA components.

hsla_to_rgba

Converts HSLA color space to RGBA.

hsla_to_rgbaf

Converts HSLA color space to floating-point RGBA.

hsv

Creates an opaque color from HSV components.

hsva

Creates a color from HSVA components.

hsva_to_rgba

Converts HSVA color space to RGBA.

hsva_to_rgbaf

Converts HSVA color space to floating-point RGBA.

lab

Creates a color from CIELAB components.

lab_to_rgba

Converts CIELAB color space to RGBA.

lab_to_xyz

Converts CIELAB to CIEXYZ color space.

rgb

Creates an opaque color from RGB components.

rgb565_to_rgba

Converts RGB565 format to RGBA.

rgb_565

Creates a color from a 16-bit RGB565 value.

rgba

Creates a color from RGBA components.

rgba_to_cmyk

Converts an RGBA color to CMYK color space.

rgba_to_hsla

Converts an RGBA color to HSLA color space.

rgba_to_hsva

Converts an RGBA color to HSVA color space.

rgba_to_lab

Converts an RGBA color to CIELAB color space.

rgba_to_lab_custom

Converts an RGBA color to CIELAB color space using a custom white point.

rgba_to_rgb565

Converts an RGBA color to RGB565 format.

rgba_to_rgbaf

Converts an RGBA color to floating-point RGBA format.

rgba_to_xyz

Converts an RGBA color to CIEXYZ color space.

rgba_to_xyz_custom

Converts an RGBA color to CIEXYZ color space using a custom white point.

rgba_to_yuv

Converts an RGBA color to YUV color space.

rgbaf

Creates a color from floating-point RGBA components.

rgbaf_to_hsla

Converts floating-point RGBA to HSLA color space.

rgbaf_to_hsva

Converts floating-point RGBA to HSVA color space.

rgbaf_to_rgba

Converts floating-point RGBA to 8-bit RGBA format.

rgbf

Creates an opaque color from floating-point RGB components.

xyz

Creates a color from CIEXYZ components.

xyz_to_lab

Converts CIEXYZ to CIELAB color space.

xyz_to_rgba

Converts CIEXYZ color space to RGBA.

yuv

Creates a color from YUV components.

yuv_to_rgba

Converts YUV color space to RGBA.


cmyk


Creates a color from CMYK components.

color_t cmyk(
    float c,
    float m,
    float y,
    float k,
    float a);  
Parameters
c

Cyan component (0.0-1.0).

m

Magenta component (0.0-1.0).

y

Yellow component (0.0-1.0).

k

Black/key component (0.0-1.0).

a

Alpha component (0.0-1.0).

Return Value

A color_t value representing the specified CMYK color.

Discussion

This function constructs a color_t union from CMYK color space components. CMYK is the standard color model used in printing, where colors are represented as the amount of cyan, magenta, yellow, and black ink needed.


cmyk_to_rgba


Converts CMYK color space to RGBA.

Parameters
cmyk

The input CMYK color.

Return Value

A color_t value representing the equivalent RGBA color.

Discussion

This function converts CMYK color space back to RGBA.


color_achromatopsia


Simulates achromatopsia (complete color blindness).

color_t color_achromatopsia(
    color_t color);  // Complete color blindness 
Parameters
color

The input color to simulate.

Return Value

The color as seen by someone with achromatopsia.

Discussion

This function simulates complete color blindness by converting the color to grayscale using luminance coefficients. Achromatopsia results in monochromatic vision with only brightness information.


color_adjust_blacks


Adjusts very dark areas of a color.

color_t color_adjust_blacks(
    color_t color,
    float amount);  
Parameters
color

The input color.

amount

Black adjustment amount (-1.0 to 1.0).

Return Value

The color with adjusted blacks.

Discussion

This function selectively adjusts pixels with luminance below 20%, affecting only the darkest parts of the image.


color_adjust_brightness


Adjusts the brightness of a color.

color_t color_adjust_brightness(
    color_t color,
    float amount);  
Parameters
color

The input color.

amount

Brightness adjustment amount (-1.0 to 1.0, where 0 = no change).

Return Value

The color with adjusted brightness.

Discussion

This function adds the specified amount to each RGB channel, effectively making the color lighter (positive values) or darker (negative values).


color_adjust_clarity


Enhances local contrast (clarity/structure).

color_t color_adjust_clarity(
    color_t color,
    float amount);  
Parameters
color

The input color.

amount

Clarity adjustment amount (-1.0 to 1.0).

Return Value

The color with enhanced clarity.

Discussion

This function boosts contrast in mid-tone areas, simulating the clarity/structure adjustment found in photo editing software.


color_adjust_contrast


Adjusts the contrast of a color.

color_t color_adjust_contrast(
    color_t color,
    float amount);  
Parameters
color

The input color.

amount

Contrast adjustment amount (-1.0 to 1.0, where 0 = no change).

Return Value

The color with adjusted contrast.

Discussion

This function applies a contrast adjustment by scaling RGB values around the midpoint (0.5), making colors more vivid (positive values) or more muted (negative values).


color_adjust_exposure


Adjusts the exposure of a color in stops.

color_t color_adjust_exposure(
    color_t color,
    float stops);  
Parameters
color

The input color.

stops

Exposure adjustment in stops (-3.0 to 3.0, where 0 = no change).

Return Value

The color with adjusted exposure.

Discussion

This function multiplies RGB values by 2^stops, simulating camera exposure changes. Each stop doubles or halves the brightness.


color_adjust_gamma


Applies gamma correction to a color.

color_t color_adjust_gamma(
    color_t color,
    float gamma);  
Parameters
color

The input color.

gamma

Gamma correction value (must be > 0).

Return Value

The color with gamma correction applied.

Discussion

This function applies gamma correction using the formula: output = input^(1/gamma). Values > 1.0 make the image darker, values < 1.0 make it lighter.


color_adjust_highlights


Adjusts highlight areas of a color.

color_t color_adjust_highlights(
    color_t color,
    float amount);  
Parameters
color

The input color.

amount

Highlight adjustment amount (-1.0 to 1.0).

Return Value

The color with adjusted highlights.

Discussion

This function selectively adjusts pixels with luminance above 50%, making bright areas brighter (positive values) or darker (negative values).


color_adjust_shadows


Adjusts shadow areas of a color.

color_t color_adjust_shadows(
    color_t color,
    float amount);  
Parameters
color

The input color.

amount

Shadow adjustment amount (-1.0 to 1.0).

Return Value

The color with adjusted shadows.

Discussion

This function selectively adjusts pixels with luminance below 50%, making dark areas brighter (positive values) or darker (negative values).


color_adjust_temperature


Adjusts the color temperature of a color.

color_t color_adjust_temperature(
    color_t color,
    float kelvin);  
Parameters
color

The input color.

kelvin

Color temperature in Kelvin (1000-40000K, 6500K = daylight).

Return Value

The color with adjusted temperature.

Discussion

This function simulates color temperature changes by blending the color with the RGB equivalent of the specified blackbody temperature.


color_adjust_vibrance


Applies smart saturation adjustment.

color_t color_adjust_vibrance(
    color_t color,
    float amount);  
Parameters
color

The input color.

amount

Vibrance adjustment amount (-1.0 to 1.0).

Return Value

The color with adjusted vibrance.

Discussion

This function intelligently adjusts saturation, applying more effect to less saturated colors while protecting skin tones and already vivid colors.


color_adjust_whites


Adjusts very bright areas of a color.

color_t color_adjust_whites(
    color_t color,
    float amount);  
Parameters
color

The input color.

amount

White adjustment amount (-1.0 to 1.0).

Return Value

The color with adjusted whites.

Discussion

This function selectively adjusts pixels with luminance above 80%, affecting only the brightest parts of the image.


color_adobe_rgb_to_srgb


Converts Adobe RGB color space to sRGB.

color_t color_adobe_rgb_to_srgb(
    color_t color);  // Print/web 
Parameters
color

The input color in Adobe RGB color space.

Return Value

The color converted to sRGB color space.

Discussion

This function converts colors from the Adobe RGB color space (designed for print workflows with a wider gamut than sRGB) to the standard sRGB color space used for most displays and web content.


color_alpha_blend


Performs standard alpha blending (Porter-Duff "over" operation).

Parameters
fg

Foreground color (source).

bg

Background color (destination).

Return Value

The alpha-blended result.

Discussion

This function composites the foreground color over the background color using standard alpha blending equations, properly handling premultiplied alpha.


color_analogous


Generates analogous colors (adjacent hues on the color wheel).

void color_analogous(
    color_t base,
    color_t *colors,
    int count);  // Adjacent hues 
Parameters
base

The base color to generate variations from.

colors

Pointer to array where generated colors will be stored.

count

Number of analogous colors to generate.

Discussion

This function creates colors that are adjacent to the base color on the color wheel, typically within ±30° of the base hue. Analogous color schemes are harmonious and pleasing to the eye.


color_brightness


Calculates the simple average brightness of a color.

float color_brightness(
    color_t color);  
Parameters
color

The input color.

Return Value

The average brightness value (0.0-1.0).

Discussion

This function computes brightness as the simple average of RGB components. This is a basic metric that doesn't account for perceptual differences between color channels.


color_cmp


Compares two colors for exact equality.

bool color_cmp(
    color_t a,
    color_t b);  
Parameters
a

First color to compare.

b

Second color to compare.

Return Value

true if all RGBA components are identical, false otherwise.

Discussion

This function performs a bitwise comparison of all color components including alpha. It returns true only if both colors are exactly identical.


color_color_balance


Applies color balance adjustment to a color.

color_t color_color_balance(
    color_t color,
    float cyan_red,
    float magenta_green,
    float yellow_blue);  
Parameters
color

The input color to adjust.

cyan_red

Cyan/red balance adjustment (-1.0 to 1.0).

magenta_green

Magenta/green balance adjustment (-1.0 to 1.0).

yellow_blue

Yellow/blue balance adjustment (-1.0 to 1.0).

Return Value

The color with color balance adjustment applied.

Discussion

This function adjusts the color balance by adding or subtracting from the RGB channels. Positive cyan_red values add cyan (reduce red), negative values add red. Similar logic applies to the other color pairs, allowing fine control over color temperature and tint.


color_color_burn


Applies color burn blending mode.

Parameters
a

First color (base layer).

b

Second color (blend layer).

Return Value

The blended color result.

Discussion

This function darkens the base color based on the blend color. The darker the blend color, the more the base color is darkened. Pure black blend produces no change.


color_color_dodge


Applies color dodge blending mode.

Parameters
a

First color (base layer).

b

Second color (blend layer).

Return Value

The blended color result.

Discussion

This function brightens the base color based on the blend color. The brighter the blend color, the more the base color is lightened. Pure white blend produces no change.


color_complement


Gets the complementary color (opposite hue).

Parameters
color

The input color.

Return Value

The complementary color.

Discussion

This function shifts the hue by 180° in HSV color space to find the complementary color, which provides maximum contrast.


color_contrast_ratio


Calculates the WCAG contrast ratio between two colors.

float color_contrast_ratio(
    color_t a,
    color_t b);  // WCAG contrast ratio 
Parameters
a

First color.

b

Second color.

Return Value

The contrast ratio (1.0 to 21.0+).

Discussion

This function calculates the contrast ratio according to WCAG guidelines using relative luminance. A ratio of 1.0 means no contrast (same color), while higher ratios indicate better contrast. Ratios of 4.5:1 or 7:1 are required for AA/AAA compliance respectively.


color_curves


Applies curves adjustment to a color using lookup tables.

color_t color_curves(
    color_t color,
    float *curve_r,
    float *curve_g,
    float *curve_b);  
Parameters
color

The input color to adjust.

curve_r

Pointer to a 256-element array defining the red channel curve (0.0-1.0 values).

curve_g

Pointer to a 256-element array defining the green channel curve (0.0-1.0 values).

curve_b

Pointer to a 256-element array defining the blue channel curve (0.0-1.0 values).

Return Value

The color with curves adjustment applied.

Discussion

This function applies tone curves to each RGB channel independently using lookup tables. Each curve array should contain 256 float values mapping input levels (0-255) to output levels (0.0-1.0). This provides precise control over tonal adjustments.


color_darken


Selects the darker of two colors for each channel.

Parameters
a

First color.

b

Second color.

Return Value

Color with minimum values from each channel.

Discussion

This function compares corresponding channels and selects the darker (lower) value for each. Alpha is blended using standard alpha blending rules.


color_delta_e_2000


Calculates the color difference using the CIEDE2000 formula (Delta E CIEDE2000).

float color_delta_e_2000(
    color_lab_t a,
    color_lab_t b);  // CIEDE2000 formula 
Parameters
a

First color in CIELAB space.

b

Second color in CIELAB space.

Return Value

The color difference value using CIEDE2000 weighting (Delta E CIEDE2000).

Discussion

This function computes color difference using the CIEDE2000 formula, which is the most perceptually accurate color difference metric currently available. It accounts for perceptual non-uniformities in CIELAB space and provides excellent correlation with visual judgments.


color_delta_e_76


Calculates the color difference using the CIE76 formula (Delta E CIE76).

float color_delta_e_76(
    color_lab_t a,
    color_lab_t b);  // CIE76 formula 
Parameters
a

First color in CIELAB space.

b

Second color in CIELAB space.

Return Value

The Euclidean distance in CIELAB space (Delta E CIE76).

Discussion

This function computes the straight-line Euclidean distance between two colors in CIELAB color space. This is a simple but effective color difference metric, though not as perceptually accurate as CIEDE2000.


color_delta_e_94


Calculates the color difference using the CIE94 formula (Delta E CIE94).

float color_delta_e_94(
    color_lab_t a,
    color_lab_t b);  // CIE94 formula 
Parameters
a

First color in CIELAB space.

b

Second color in CIELAB space.

Return Value

The color difference value using CIE94 weighting (Delta E CIE94).

Discussion

This function computes color difference using the CIE94 formula, which applies different weighting factors to lightness, chroma, and hue differences. It provides better perceptual accuracy than CIE76, especially for small color differences.


color_desaturate


Decreases the saturation of a color.

color_t color_desaturate(
    color_t color,
    float amount);  
Parameters
color

The input color.

amount

Saturation reduction factor (0.0 to 1.0, where 0.0 = grayscale, 1.0 = no change).

Return Value

The color with reduced saturation.

Discussion

This function scales down the saturation component in HSV color space, moving colors toward grayscale.


color_deuteranopia


Simulates deuteranopia (green-blind) color vision deficiency.

color_t color_deuteranopia(
    color_t color);  // Green-blind 
Parameters
color

The input color to simulate.

Return Value

The color as seen by someone with deuteranopia.

Discussion

This function simulates green-blind color vision by applying the appropriate color transformation matrix. Deuteranopia affects the green color channel and is the most common form of color blindness.


color_difference


Calculates the absolute difference between two colors.

Parameters
a

First color.

b

Second color.

Return Value

Color representing the absolute difference.

Discussion

This function subtracts the darker color from the lighter color for each channel, creating high-contrast results often used for special effects.


color_distance


Calculates the Euclidean distance between two colors in RGB space.

Parameters
a

First color.

b

Second color.

Return Value

The Euclidean distance in RGB space.

Discussion

This function computes the straight-line distance between two colors in RGB color space. This is a simple metric that doesn't account for perceptual differences between colors.


color_distance_lab


Calculates the Euclidean distance between two colors in CIELAB color space.

Parameters
a

First color in CIELAB space.

b

Second color in CIELAB space.

Return Value

The Euclidean distance in LAB space (Delta E CIE76).

Discussion

This function computes the straight-line distance between two points in CIELAB color space. This is a simple but effective color difference metric, though not as perceptually accurate as CIEDE2000.


color_dither_floyd_steinberg


Applies Floyd-Steinberg dithering to quantize a color against a palette.

color_t color_dither_floyd_steinberg(
    color_t color,
    color_t *palette,
    int palette_size,
    int x,
    int y);  
Parameters
color

The input color to dither.

palette

Pointer to an array of available colors.

palette_size

The number of colors in the palette.

x

The x-coordinate of the pixel (used for dithering pattern).

y

The y-coordinate of the pixel (used for dithering pattern).

Return Value

The dithered color from the palette.

Discussion

This function implements the classic Floyd-Steinberg error diffusion algorithm. It finds the closest color in the palette and distributes the quantization error to neighboring pixels. The x,y coordinates are used to simulate the error diffusion pattern.


color_dither_ordered


Applies ordered dithering to quantize a color against a palette.

color_t color_dither_ordered(
    color_t color,
    color_t *palette,
    int palette_size,
    int x,
    int y);  
Parameters
color

The input color to dither.

palette

Pointer to an array of available colors.

palette_size

The number of colors in the palette.

x

The x-coordinate of the pixel (used for dithering pattern).

y

The y-coordinate of the pixel (used for dithering pattern).

Return Value

The dithered color from the palette.

Discussion

This function implements ordered dithering using a Bayer matrix pattern. It compares the color against a threshold matrix to determine which palette color to use. This creates a regular dithering pattern that works well for textures and gradients.


color_dominant_channel


Determines the dominant color channel.

Parameters
color

The input color.

Return Value

0 for red-dominant, 1 for green-dominant, 2 for blue-dominant.

Discussion

This function compares RGB channel values to determine which color channel has the highest intensity.


color_energy


Calculates the total energy of a color.

float color_energy(
    color_t color);  
Parameters
color

The input color.

Return Value

Color energy value (0.0-1.0).

Discussion

This function computes the average of all RGB channels, representing the overall intensity of the color.


color_exclusion


Applies exclusion blending mode.

Parameters
a

First color (base layer).

b

Second color (blend layer).

Return Value

The blended color result.

Discussion

This function is similar to difference mode but with lower contrast. It produces a result similar to the base color with the blend color's complementary colors subtracted.


color_fast_grayscale


Converts a color to grayscale using fast integer-only arithmetic.

color_t color_fast_grayscale(
    color_t color);  // Integer-only grayscale 
Parameters
color

The input color to convert.

Return Value

The grayscale version of the input color.

Discussion

This function provides a high-performance grayscale conversion that avoids floating-point operations. It uses integer arithmetic to convert RGB values to grayscale while preserving the alpha channel.


color_fast_invert


Inverts RGB channels using fast bitwise operations.

color_t color_fast_invert(
    color_t color);  // Bitwise invert 
Parameters
color

The input color to invert.

Return Value

The inverted version of the input color.

Discussion

This function creates a photographic negative by inverting the RGB channels using bitwise operations. This is faster than arithmetic inversion and preserves the alpha channel.


color_fast_sepia


Applies a sepia tone effect using fast integer arithmetic.

color_t color_fast_sepia(
    color_t color);  // Fast sepia tone 
Parameters
color

The input color to apply sepia toning to.

Return Value

The sepia-toned version of the input color.

Discussion

This function creates a sepia-toned version of the input color using optimized integer calculations. Sepia toning gives images a warm, antique appearance reminiscent of old photographs.


color_gradient


Generates a linear gradient between two colors.

void color_gradient(
    color_t start,
    color_t end,
    color_t *colors,
    int count);  // 1D gradient 
Parameters
start

The starting color of the gradient.

end

The ending color of the gradient.

colors

Pointer to array where gradient colors will be stored.

count

Number of colors to generate in the gradient.

Discussion

This function creates a smooth transition of colors from start to end, with the specified number of intermediate steps. Useful for creating color ramps and smooth color transitions.


color_grayscale


Converts a color to grayscale.

Parameters
color

The input color.

Return Value

A grayscale version of the input color.

Discussion

This function converts the color to grayscale using perceptual luminance coefficients, preserving the alpha channel.


color_hard_light


Applies hard light blending mode.

Parameters
a

First color (base layer).

b

Second color (blend layer).

Return Value

The blended color result.

Discussion

This function is the inverse of overlay: if the blend color is < 128 it multiplies, otherwise it screens. Hard light creates more dramatic lightening/darkening effects.


color_hue


Gets the hue of a color in degrees.

float color_hue(
    color_t color);  
Parameters
color

The input color.

Return Value

The hue angle in degrees (0.0-360.0).

Discussion

This function converts the color to HSV space and returns the hue as an angle in degrees, where 0° is red, 120° is green, and 240° is blue.


color_hue_shift


Shifts the hue of a color by a specified number of degrees.

color_t color_hue_shift(
    color_t color,
    float degrees);  
Parameters
color

The input color.

degrees

Degrees to shift the hue (-360 to 360).

Return Value

The color with shifted hue.

Discussion

This function rotates the hue component in HSV color space by the specified number of degrees, cycling through the color wheel.


color_invert


Inverts the RGB channels of a color.

Parameters
color

The input color.

Return Value

The color with inverted RGB values.

Discussion

This function inverts each RGB channel (255 - value) while preserving the alpha channel. This creates the photographic negative of the color.


color_is_cool


Determines if a color is cool (bluish/greenish).

int color_is_cool(
    color_t color);  
Parameters
color

The input color.

Return Value

1 if cool, 0 if warm.

Discussion

This function considers a color cool if blue dominates and the blue+green sum is significantly higher than red.


color_is_dark


Determines if a color is considered dark.

int color_is_dark(
    color_t color);  
Parameters
color

The input color.

Return Value

1 if the color is dark (luminance < 0.5), 0 if light.

Discussion

This function uses perceptual luminance to determine if a color appears dark. Colors with luminance below 0.5 are considered dark.


color_is_grayscale


Checks if a color is effectively grayscale.

Parameters
color

The input color.

Return Value

1 if the color is grayscale, 0 otherwise.

Discussion

This function checks if all RGB channels are within 2 units of each other, indicating the color has no significant hue.


color_is_similar


Checks if two colors are similar within a threshold.

int color_is_similar(
    color_t a,
    color_t b,
    float threshold);  
Parameters
a

First color to compare.

b

Second color to compare.

threshold

Similarity threshold (0.0-1.0, where 1.0 = identical).

Return Value

1 if colors are similar within the threshold, 0 otherwise.

Discussion

This function compares two colors and returns whether they are similar enough based on the given threshold. A threshold of 0.95 would consider colors very close, while 0.5 would be more lenient.


color_is_warm


Determines if a color is warm (reddish/yellowish).

int color_is_warm(
    color_t color);  
Parameters
color

The input color.

Return Value

1 if warm, 0 if cool.

Discussion

This function considers a color warm if red dominates and the red+green sum is significantly higher than blue.


color_lerp


Linearly interpolates between two colors.

color_t color_lerp(
    color_t a,
    color_t b,
    float t);  
Parameters
a

Starting color.

b

Ending color.

t

Interpolation factor (0.0 = a, 1.0 = b).

Return Value

The interpolated color.

Discussion

This function performs linear interpolation between two colors in RGB space. The interpolation factor t is clamped to the range [0.0, 1.0]. Alpha is also interpolated.


color_levels


Applies levels adjustment to a color (black point, white point, gamma).

color_t color_levels(
    color_t color,
    float black_point,
    float white_point,
    float gamma);  
Parameters
color

The input color to adjust.

black_point

The black point value (0.0-1.0, where 0 = no change).

white_point

The white point value (0.0-1.0, where 1 = no change).

gamma

The gamma correction value (must be > 0).

Return Value

The color with levels adjustment applied.

Discussion

This function applies a levels adjustment similar to photo editing software. The black point remaps dark tones, the white point remaps bright tones, and gamma adjusts the midtones. Values are clamped to prevent clipping.


color_lift_gamma_gain


Applies lift-gamma-gain color grading to a color.

Parameters
color

The input color to grade.

lift

Color adjustment for shadows/blacks (additive effect in dark areas).

gamma

Gamma correction for midtones (power function applied to mid-range values).

gain

Color adjustment for highlights/whites (multiplicative effect in bright areas).

Return Value

The color graded result.

Discussion

This function implements the classic lift-gamma-gain color grading technique commonly used in film and video post-production. Lift affects shadows and blacks, gamma affects midtones, and gain affects highlights and whites. Each parameter is a color_rgbaf_t struct where values represent the adjustment strength for each RGB channel.


color_lighten


Selects the lighter of two colors for each channel.

Parameters
a

First color.

b

Second color.

Return Value

Color with maximum values from each channel.

Discussion

This function compares corresponding channels and selects the lighter (higher) value for each. Alpha is blended using standard alpha blending rules.


color_luminance


Calculates the perceptual luminance of a color.

float color_luminance(
    color_t color);  
Parameters
color

The input color.

Return Value

The luminance value (0.0-1.0) using sRGB perceptual coefficients.

Discussion

This function computes the perceived brightness of a color using the standard sRGB luminance formula. This is different from simple averaging and accounts for human visual perception where green appears brighter than red or blue.


color_match_closest


Finds the closest color in a palette to the target color.

color_t color_match_closest(
    color_t target,
    color_t *palette,
    int palette_size);  
Parameters
target

The target color to match.

palette

Pointer to an array of colors to search.

palette_size

The number of colors in the palette.

Return Value

The closest matching color from the palette.

Discussion

This function searches through the color palette and returns the color with the smallest Euclidean distance in RGB space to the target color. Useful for color quantization and palette-based rendering.


color_monochromatic


Generates monochromatic colors (same hue, varying saturation/value).

void color_monochromatic(
    color_t base,
    color_t *colors,
    int count);  // Same hue, different lightness 
Parameters
base

The base color to generate variations from.

colors

Pointer to array where generated colors will be stored.

count

Number of monochromatic colors to generate.

Discussion

This function creates colors with the same hue as the base color but varying saturation and brightness levels. Monochromatic schemes are elegant and sophisticated.


color_multiply


Multiplies two colors together.

Parameters
a

First color (base layer).

b

Second color (blend layer).

Return Value

The blended color result.

Discussion

This function multiplies the RGB channels of the two colors, creating a darker result. Multiply mode is commonly used for shadows and darkening effects.


color_overlay


Applies overlay blending mode.

Parameters
a

First color (base layer).

b

Second color (blend layer).

Return Value

The blended color result.

Discussion

This function combines multiply and screen modes: for each channel, if the base is < 128 it multiplies, otherwise it screens. Overlay enhances contrast and saturation.


color_posterize


Applies posterization effect by reducing the number of tonal levels.

color_t color_posterize(
    color_t color,
    int levels);  
Parameters
color

The input color to posterize.

levels

The number of tonal levels per channel (2-256).

Return Value

The posterized color.

Discussion

This function reduces the number of available brightness levels per channel, creating a poster-like effect with distinct tonal bands. Lower levels values produce more dramatic posterization effects.


color_premultiply_alpha


Premultiplies RGB channels by alpha.

Parameters
color

The input color.

Return Value

Color with RGB channels premultiplied by alpha.

Discussion

This function multiplies each RGB channel by the alpha value, preparing the color for use in blending operations that expect premultiplied alpha.


color_prophoto_to_srgb


Converts ProPhoto RGB color space to sRGB.

color_t color_prophoto_to_srgb(
    color_t color);  // Photography 
Parameters
color

The input color in ProPhoto RGB color space.

Return Value

The color converted to sRGB color space.

Discussion

This function converts colors from the ProPhoto RGB color space (commonly used in professional photography due to its wide color gamut) to the standard sRGB color space used for most displays and web content.


color_protanopia


Simulates protanopia (red-blind) color vision deficiency.

color_t color_protanopia(
    color_t color);  // Red-blind 
Parameters
color

The input color to simulate.

Return Value

The color as seen by someone with protanopia.

Discussion

This function simulates red-blind color vision by applying the appropriate color transformation matrix. Protanopia affects the red color channel, making reds appear darker and causing confusion between red and green hues.


color_purity


Calculates the color purity (saturation).

float color_purity(
    color_t color);  
Parameters
color

The input color.

Return Value

Color purity value (0.0-1.0).

Discussion

This function measures how far the color is from the grayscale axis in RGB space, indicating color intensity or vividness.


color_quantize


Quantizes a color to reduce the number of bits per channel.

color_t color_quantize(
    color_t color,
    int bits_per_channel);  
Parameters
color

The input color to quantize.

bits_per_channel

The number of bits to use per channel (1-8).

Return Value

The quantized color.

Discussion

This function reduces color precision by limiting each RGB channel to the specified number of bits. This creates a posterized effect and can be used for retro graphics, dithering preparation, or reducing color palette size.


color_rec709_to_rec2020


Converts Rec.709 (standard HD) color space to Rec.2020 (ultra HD/HDR).

color_t color_rec709_to_rec2020(
    color_t color);  // HDR conversion 
Parameters
color

The input color in Rec.709 color space.

Return Value

The color converted to Rec.2020 color space.

Discussion

This function converts colors from the Rec.709 color space (used in standard HD television and video) to the Rec.2020 color space (used in ultra HD and HDR content). Rec.2020 has a wider color gamut and is designed for high dynamic range applications.


color_relative_luminance


Calculates the relative luminance for WCAG accessibility compliance.

Parameters
color

The input color.

Return Value

The relative luminance value (0.0-1.0) with gamma correction applied.

Discussion

This function computes relative luminance according to WCAG guidelines, applying gamma correction to sRGB values. This is used for calculating contrast ratios between colors for accessibility compliance.


color_saturate


Increases the saturation of a color.

color_t color_saturate(
    color_t color,
    float amount);  
Parameters
color

The input color.

amount

Saturation multiplier (0.0 to 2.0+, where 1.0 = no change).

Return Value

The color with increased saturation.

Discussion

This function multiplies the saturation component in HSV color space by the specified amount, making colors more vivid.


color_saturation


Gets the saturation level of a color.

float color_saturation(
    color_t color);  
Parameters
color

The input color.

Return Value

The saturation value (0.0-1.0) in HSV color space.

Discussion

This function converts the color to HSV space and returns the saturation component, which represents color purity or intensity.


color_screen


Screens two colors together.

Parameters
a

First color (base layer).

b

Second color (blend layer).

Return Value

The blended color result.

Discussion

This function inverts both colors, multiplies them, then inverts the result, creating a lighter effect. Screen mode is commonly used for highlights and lightening effects.


color_selective_color


Applies selective color adjustment to specific color ranges.

color_t color_selective_color(
    color_t color,
    int channel,
    float cyan,
    float magenta,
    float yellow,
    float black);  
Parameters
color

The input color to adjust.

channel

The color channel to adjust (0=reds, 1=yellows, 2=greens, 3=cyans, 4=blues, 5=magentas).

cyan

Cyan adjustment amount (-1.0 to 1.0).

magenta

Magenta adjustment amount (-1.0 to 1.0).

yellow

Yellow adjustment amount (-1.0 to 1.0).

black

Black adjustment amount (-1.0 to 1.0).

Return Value

The color with selective color adjustment applied.

Discussion

This function adjusts specific color ranges in CMY color space. The channel parameter determines which colors are affected based on their dominant CMY components. This allows precise color corrections similar to professional photo editing software.


color_shadow_highlight


Adjusts shadow and highlight regions of a color.

color_t color_shadow_highlight(
    color_t color,
    float shadow,
    float highlight);  
Parameters
color

The input color to adjust.

shadow

Shadow adjustment amount (-1.0 to 1.0).

highlight

Highlight adjustment amount (-1.0 to 1.0).

Return Value

The color with shadow/highlight adjustment applied.

Discussion

This function selectively adjusts shadow (dark) and highlight (bright) regions based on luminance. Positive values brighten the respective regions, negative values darken them. The adjustment strength varies with luminance level.


color_shadow_midtone_highlight


Applies shadow-midtone-highlight color grading using luminance-based weighting.

Parameters
color

The input color to grade.

shadow

Color adjustment applied primarily to shadow/dark areas.

midtone

Color adjustment applied primarily to midtone areas.

highlight

Color adjustment applied primarily to highlight/bright areas.

Return Value

The color graded result.

Discussion

This function provides an alternative color grading approach that uses the image's luminance to determine how much each correction affects different tonal ranges. Shadows are weighted toward dark areas, midtones follow a bell curve, and highlights are weighted toward bright areas.


color_similarity


Calculates the similarity between two colors (0.0-1.0).

Parameters
a

First color to compare.

b

Second color to compare.

Return Value

Similarity value where 1.0 means identical, 0.0 means completely different.

Discussion

This function calculates color similarity based on Euclidean distance in RGB space, normalized to a 0.0-1.0 range. Higher values indicate more similar colors.


color_soft_light


Applies soft light blending mode.

Parameters
a

First color (base layer).

b

Second color (blend layer).

Return Value

The blended color result.

Discussion

This function simulates the effect of shining a diffused spotlight on the base color. It creates a softer, more subtle lightening/darkening effect than hard light.


color_split_complementary


Generates split-complementary colors.

void color_split_complementary(
    color_t base,
    color_t *color1,
    color_t *color2);  // Split complement 
Parameters
base

The base color to generate variations from.

color1

Pointer to store the first split-complementary color.

color2

Pointer to store the second split-complementary color.

Discussion

This function creates colors using the base color and two colors adjacent to its complement. This scheme provides high contrast while maintaining harmony.


color_temperature_estimate


Estimates the color temperature in Kelvin.

Parameters
color

The input color.

Return Value

Estimated color temperature (1000K-10000K).

Discussion

This function provides a rough approximation of color temperature based on the blue-to-red ratio, where higher blue content indicates cooler (higher) temperatures.


color_tetradic


Generates tetradic colors (rectangle scheme on the color wheel).

void color_tetradic(
    color_t base,
    color_t *color1,
    color_t *color2,
    color_t *color3);  // Rectangle scheme 
Parameters
base

The base color to generate variations from.

color1

Pointer to store the first tetradic color.

color2

Pointer to store the second tetradic color.

color3

Pointer to store the third tetradic color.

Discussion

This function creates three colors that form a rectangle on the color wheel (90° apart). Tetradic color schemes offer rich color variety while maintaining balance.


color_tint


Applies a tint adjustment to a color.

color_t color_tint(
    color_t color,
    float amount);  
Parameters
color

The input color.

amount

Tint amount (-1.0 to 1.0).

Return Value

The color with applied tint.

Discussion

This function adjusts the magenta-green balance, adding magenta (positive values) or green (negative values) to the color.


color_triadic


Generates triadic colors (120° apart on the color wheel).

void color_triadic(
    color_t base,
    color_t *color1,
    color_t *color2);  // 120° apart 
Parameters
base

The base color to generate variations from.

color1

Pointer to store the first triadic color.

color2

Pointer to store the second triadic color.

Discussion

This function creates two colors that are 120° apart from the base color on the color wheel. Triadic color schemes provide vibrant contrast while maintaining harmony.


color_tritanopia


Simulates tritanopia (blue-blind) color vision deficiency.

color_t color_tritanopia(
    color_t color);  // Blue-blind 
Parameters
color

The input color to simulate.

Return Value

The color as seen by someone with tritanopia.

Discussion

This function simulates blue-blind color vision by applying the appropriate color transformation matrix. Tritanopia affects the blue color channel and is relatively rare.


color_unpremultiply_alpha


Unpremultiplies RGB channels by alpha.

Parameters
color

The input color.

Return Value

Color with RGB channels unpremultiplied by alpha.

Discussion

This function divides each RGB channel by the alpha value, converting from premultiplied alpha format back to straight alpha format.


color_vibrance


Applies vibrance adjustment (smart saturation) to a color.

color_t color_vibrance(
    color_t color,
    float amount);  // Smart saturation 
Parameters
color

The input color to adjust.

amount

Vibrance adjustment amount (-1.0 to 1.0).

Return Value

The color with vibrance adjustment applied.

Discussion

This function applies intelligent saturation adjustment that affects less saturated colors more than already vivid colors. Positive values increase saturation, negative values decrease it. This helps avoid oversaturation of already colorful areas.


color_wcag_aa_compliant


Checks if two colors meet WCAG AA contrast requirements.

int color_wcag_aa_compliant(
    color_t fg,
    color_t bg);  // AA compliance 
Parameters
fg

Foreground color.

bg

Background color.

Return Value

1 if compliant with WCAG AA standards, 0 otherwise.

Discussion

This function checks if the contrast ratio between foreground and background colors meets WCAG AA requirements (4.5:1 for normal text, 3:1 for large text). Returns 1 if compliant, 0 if not.


color_wcag_aaa_compliant


Checks if two colors meet WCAG AAA contrast requirements.

int color_wcag_aaa_compliant(
    color_t fg,
    color_t bg);  // AAA compliance 
Parameters
fg

Foreground color.

bg

Background color.

Return Value

1 if compliant with WCAG AAA standards, 0 otherwise.

Discussion

This function checks if the contrast ratio between foreground and background colors meets WCAG AAA requirements (7:1 for normal text, 4.5:1 for large text). Returns 1 if compliant, 0 if not.


hsl


Creates an opaque color from HSL components.

color_t hsl(
    float h,
    float s,
    float l);  
Parameters
h

Hue component (0.0-1.0, where 0.0 = red, 0.333 = green, 0.667 = blue).

s

Saturation component (0.0-1.0, where 0.0 = grayscale, 1.0 = fully saturated).

l

Lightness component (0.0-1.0, where 0.0 = black, 0.5 = normal, 1.0 = white).

Return Value

A color_t value representing the specified HSL color with full opacity.

Discussion

This function constructs a color_t union from HSL color space components with the alpha channel set to 1.0 (fully opaque). Equivalent to calling hsla(h, s, l, 1.0f).


hsla


Creates a color from HSLA components.

color_t hsla(
    float h,
    float s,
    float l,
    float a);  
Parameters
h

Hue component (0.0-1.0, where 0.0 = red, 0.333 = green, 0.667 = blue).

s

Saturation component (0.0-1.0, where 0.0 = grayscale, 1.0 = fully saturated).

l

Lightness component (0.0-1.0, where 0.0 = black, 0.5 = normal, 1.0 = white).

a

Alpha component (0.0-1.0).

Return Value

A color_t value representing the specified HSLA color.

Discussion

This function constructs a color_t union from HSL color space components. The hue wraps around (1.0 = 0.0), saturation and lightness are clamped to 0.0-1.0, and the result is converted to RGBA internally.


hsla_to_rgba


Converts HSLA color space to RGBA.

Parameters
hsla

The input HSLA color.

Return Value

A color_t value representing the equivalent RGBA color.

Discussion

This function converts HSL color space back to RGBA using the standard HSL to RGB conversion algorithm.


hsla_to_rgbaf


Converts HSLA color space to floating-point RGBA.

Parameters
hsla

The input HSLA color.

Return Value

A color_rgbaf_t structure with normalized RGBA components.

Discussion

This function converts HSL color space to normalized RGBA, providing higher precision than the 8-bit version.


hsv


Creates an opaque color from HSV components.

color_t hsv(
    float h,
    float s,
    float v);  
Parameters
h

Hue component (0.0-1.0, where 0.0 = red, 0.333 = green, 0.667 = blue).

s

Saturation component (0.0-1.0, where 0.0 = grayscale, 1.0 = fully saturated).

v

Value/brightness component (0.0-1.0, where 0.0 = black, 1.0 = full brightness).

Return Value

A color_t value representing the specified HSV color with full opacity.

Discussion

This function constructs a color_t union from HSV color space components with the alpha channel set to 1.0 (fully opaque). Equivalent to calling hsva(h, s, v, 1.0f).


hsva


Creates a color from HSVA components.

color_t hsva(
    float h,
    float s,
    float v,
    float a);  
Parameters
h

Hue component (0.0-1.0, where 0.0 = red, 0.333 = green, 0.667 = blue).

s

Saturation component (0.0-1.0, where 0.0 = grayscale, 1.0 = fully saturated).

v

Value/brightness component (0.0-1.0, where 0.0 = black, 1.0 = full brightness).

a

Alpha component (0.0-1.0).

Return Value

A color_t value representing the specified HSVA color.

Discussion

This function constructs a color_t union from HSV color space components. The hue wraps around (1.0 = 0.0), saturation and value are clamped to 0.0-1.0, and the result is converted to RGBA internally.


hsva_to_rgba


Converts HSVA color space to RGBA.

Parameters
hsva

The input HSVA color.

Return Value

A color_t value representing the equivalent RGBA color.

Discussion

This function converts HSV color space back to RGBA, applying the standard HSV to RGB conversion algorithm.


hsva_to_rgbaf


Converts HSVA color space to floating-point RGBA.

Parameters
hsva

The input HSVA color.

Return Value

A color_rgbaf_t structure with normalized RGBA components.

Discussion

This function converts HSV color space to normalized RGBA, providing higher precision than the 8-bit version.


lab


Creates a color from CIELAB components.

color_t lab(
    float l,
    float a,
    float b,
    float alpha);  
Parameters
l

Lightness component (0.0-100.0).

a

Green-red axis component (-128.0 to 128.0).

b

Blue-yellow axis component (-128.0 to 128.0).

alpha

Alpha component (0.0-1.0).

Return Value

A color_t value representing the specified CIELAB color.

Discussion

This function constructs a color_t union from CIELAB color space components. The L*a*b* values are converted to XYZ and then to RGBA internally. This color space is designed to be perceptually uniform.


lab_to_rgba


Converts CIELAB color space to RGBA.

Parameters
lab

The input CIELAB color.

Return Value

A color_t value representing the equivalent RGBA color.

Discussion

This function converts CIELAB color space back to RGBA using the D65 white point and sRGB color space.


lab_to_xyz


Converts CIELAB to CIEXYZ color space.

Parameters
lab

The input CIELAB color.

Return Value

A color_xyz_t structure with XYZ tristimulus values.

Discussion

This function converts CIELAB to CIEXYZ using the D65 white point reference.


rgb


Creates an opaque color from RGB components.

color_t rgb(
    uint8_t r,
    uint8_t g,
    uint8_t b);  
Parameters
r

Red component (0-255).

g

Green component (0-255).

b

Blue component (0-255).

Return Value

A color_t value representing the specified RGB color with full opacity.

Discussion

This function constructs a color_t union from RGB components with the alpha channel set to 255 (fully opaque). Equivalent to calling rgba(r, g, b, 255).


rgb565_to_rgba


Converts RGB565 format to RGBA.

Parameters
rgb565

The input RGB565 color.

Return Value

A color_t value representing the equivalent RGBA color.

Discussion

This function converts RGB565 format back to RGBA, expanding the 5-6-5 bit components back to 8-bit values.


rgb_565


Creates a color from a 16-bit RGB565 value.

color_t rgb_565(
    uint16_t rgb565,
    uint8_t a);  
Parameters
rgb565

16-bit RGB565 packed color value.

a

Alpha component (0-255).

Return Value

A color_t value representing the specified RGB565 color.

Discussion

This function constructs a color_t union from a 16-bit RGB565 packed color value. RGB565 uses 5 bits for red, 6 bits for green, and 5 bits for blue, providing 65,536 possible colors. Commonly used in embedded systems and older displays.


rgba


Creates a color from RGBA components.

color_t rgba(
    uint8_t r,
    uint8_t g,
    uint8_t b,
    uint8_t a);  
Parameters
r

Red component (0-255).

g

Green component (0-255).

b

Blue component (0-255).

a

Alpha component (0-255).

Return Value

A color_t value representing the specified RGBA color.

Discussion

This function constructs a color_t union from individual 8-bit RGBA components. The alpha channel controls transparency, where 0 is fully transparent and 255 is fully opaque.


rgba_to_cmyk


Converts an RGBA color to CMYK color space.

Parameters
rgba

The input RGBA color.

Return Value

A color_cmyk_t structure with C (cyan), M (magenta), Y (yellow), K (black), and alpha.

Discussion

This function converts RGBA to CMYK color space. CMYK is the standard color model used in printing, representing the amount of each ink needed.


rgba_to_hsla


Converts an RGBA color to HSLA color space.

Parameters
rgba

The input RGBA color.

Return Value

A color_hsla_t structure with hue (0.0-1.0), saturation (0.0-1.0), lightness (0.0-1.0), and alpha (0.0-1.0).

Discussion

This function converts RGBA to HSL color space, where lightness represents the perceived brightness and saturation represents color purity.


rgba_to_hsva


Converts an RGBA color to HSVA color space.

Parameters
rgba

The input RGBA color.

Return Value

A color_hsva_t structure with hue (0.0-1.0), saturation (0.0-1.0), value (0.0-1.0), and alpha (0.0-1.0).

Discussion

This function converts RGBA to HSV color space, where hue represents the color angle, saturation represents color purity, and value represents brightness.


rgba_to_lab


Converts an RGBA color to CIELAB color space.

Parameters
rgba

The input RGBA color.

Return Value

A color_lab_t structure with L* (0-100), a* (-128 to 128), b* (-128 to 128), and alpha (0.0-1.0).

Discussion

This function converts RGBA to CIELAB color space using the D65 white point. CIELAB is designed to be perceptually uniform, making it ideal for color difference calculations.


rgba_to_lab_custom


Converts an RGBA color to CIELAB color space using a custom white point.

color_lab_t rgba_to_lab_custom(
    color_t rgba,
    float wx,
    float wy,
    float wz);  
Parameters
rgba

The input RGBA color.

wx

The X component of the custom white point.

wy

The Y component of the custom white point.

wz

The Z component of the custom white point.

Return Value

A color_lab_t structure with L*, a*, b* components and alpha.

Discussion

This function converts RGBA to CIELAB color space using the specified custom white point. CIELAB is designed to be perceptually uniform, making it ideal for color difference calculations under specific lighting conditions.


rgba_to_rgb565


Converts an RGBA color to RGB565 format.

Parameters
rgba

The input RGBA color.

Return Value

A color_rgb_t565 structure with packed RGB565 value and alpha.

Discussion

This function converts RGBA to RGB565 format, which uses 5 bits for red, 6 bits for green, and 5 bits for blue. This format is commonly used in embedded systems and older displays.


rgba_to_rgbaf


Converts an RGBA color to floating-point RGBA format.

Parameters
rgba

The input RGBA color.

Return Value

A color_rgbaf_t structure with normalized floating-point components (0.0-1.0).

Discussion

This function converts 8-bit RGBA components to normalized floating-point values, which is useful for color calculations that require higher precision.


rgba_to_xyz


Converts an RGBA color to CIEXYZ color space.

Parameters
rgba

The input RGBA color.

Return Value

A color_xyz_t structure with X, Y, Z tristimulus values and alpha.

Discussion

This function converts RGBA to CIEXYZ color space using the D65 white point. XYZ represents absolute color measurements in the CIE 1931 color space.


rgba_to_xyz_custom


Converts an RGBA color to CIEXYZ color space using a custom white point.

color_xyz_t rgba_to_xyz_custom(
    color_t rgba,
    float wx,
    float wy,
    float wz);  
Parameters
rgba

The input RGBA color.

wx

The X component of the custom white point.

wy

The Y component of the custom white point.

wz

The Z component of the custom white point.

Return Value

A color_xyz_t structure with XYZ tristimulus values and alpha.

Discussion

This function converts RGBA to CIEXYZ color space using the specified custom white point instead of the standard D65 illuminant. This allows for color space conversions under different lighting conditions or for specific display characteristics.


rgba_to_yuv


Converts an RGBA color to YUV color space.

Parameters
rgba

The input RGBA color.

Return Value

A color_yuv_t structure with Y (luma), U (blue-luma difference), V (red-luma difference), and alpha.

Discussion

This function converts RGBA to YUV color space using the BT.601 standard. YUV separates luminance from chrominance information, commonly used in video encoding.


rgbaf


Creates a color from floating-point RGBA components.

color_t rgbaf(
    float r,
    float g,
    float b,
    float a);  
Parameters
r

Red component (0.0-1.0).

g

Green component (0.0-1.0).

b

Blue component (0.0-1.0).

a

Alpha component (0.0-1.0).

Return Value

A color_t value representing the specified floating-point RGBA color.

Discussion

This function constructs a color_t union from normalized floating-point RGBA components. Values are clamped to the 0.0-1.0 range and converted to 8-bit integers internally.


rgbaf_to_hsla


Converts floating-point RGBA to HSLA color space.

Parameters
rgbaf

The input floating-point RGBA color.

Return Value

A color_hsla_t structure with HSL components.

Discussion

This function converts normalized RGBA to HSL color space, providing higher precision than the 8-bit version.


rgbaf_to_hsva


Converts floating-point RGBA to HSVA color space.

Parameters
rgbaf

The input floating-point RGBA color.

Return Value

A color_hsva_t structure with HSV components.

Discussion

This function converts normalized RGBA to HSV color space, providing higher precision than the 8-bit version.


rgbaf_to_rgba


Converts floating-point RGBA to 8-bit RGBA format.

Parameters
rgbaf

The input floating-point RGBA color.

Return Value

A color_t value with clamped 8-bit components.

Discussion

This function converts normalized floating-point RGBA components to 8-bit integers, clamping values to the valid 0-255 range.


rgbf


Creates an opaque color from floating-point RGB components.

color_t rgbf(
    float r,
    float g,
    float b);  
Parameters
r

Red component (0.0-1.0).

g

Green component (0.0-1.0).

b

Blue component (0.0-1.0).

Return Value

A color_t value representing the specified floating-point RGB color with full opacity.

Discussion

This function constructs a color_t union from normalized floating-point RGB components with the alpha channel set to 1.0 (fully opaque). Equivalent to calling rgbaf(r, g, b, 1.0f).


xyz


Creates a color from CIEXYZ components.

color_t xyz(
    float x,
    float y,
    float z,
    float a);  
Parameters
x

X tristimulus value (0.0-1.0+).

y

Y tristimulus value (0.0-1.0+).

z

Z tristimulus value (0.0-1.0+).

a

Alpha component (0.0-1.0).

Return Value

A color_t value representing the specified CIEXYZ color.

Discussion

This function constructs a color_t union from CIEXYZ color space components. The XYZ values are converted to sRGB and then to RGBA internally. XYZ represents absolute color measurements.


xyz_to_lab


Converts CIEXYZ to CIELAB color space.

Parameters
xyz

The input CIEXYZ color.

Return Value

A color_lab_t structure with LAB components.

Discussion

This function converts CIEXYZ to CIELAB using the D65 white point reference.


xyz_to_rgba


Converts CIEXYZ color space to RGBA.

Parameters
xyz

The input CIEXYZ color.

Return Value

A color_t value representing the equivalent RGBA color.

Discussion

This function converts CIEXYZ color space back to RGBA using the D65 white point and sRGB color space.


yuv


Creates a color from YUV components.

color_t yuv(
    float y,
    float u,
    float v,
    float a);  
Parameters
y

Luma/brightness component (0.0-1.0).

u

Blue-luma difference component (-0.5 to 0.5).

v

Red-luma difference component (-0.5 to 0.5).

a

Alpha component (0.0-1.0).

Return Value

A color_t value representing the specified YUV color.

Discussion

This function constructs a color_t union from YUV color space components using the BT.601 standard. YUV is commonly used in video encoding and separates luminance from chrominance information.


yuv_to_rgba


Converts YUV color space to RGBA.

Parameters
yuv

The input YUV color.

Return Value

A color_t value representing the equivalent RGBA color.

Discussion

This function converts YUV color space back to RGBA using the BT.601 standard.


Typedefs

color_cmyk_t

Represents a color in CMYK color space.

color_hsla_t

Structure representing HSLA (Hue, Saturation, Lightness, Alpha) colors.

color_hsva_t

Structure representing HSVA (Hue, Saturation, Value, Alpha) colors.

color_int_t

A 32-bit unsigned integer type for representing colors.

color_lab_t

Represents a color in CIE L*a*b* color space.

color_rgb_t565

Represents a color in RGB565 format with alpha.

color_rgba_t

Alias for color_t representing RGBA colors.

color_rgbaf_t

Structure representing RGBA colors with floating-point components.

color_t

Represents a color with red, green, blue, and alpha components.

color_xyz_t

Represents a color in CIE XYZ color space.

color_yuv_t

Represents a color in YUV color space.


color_cmyk_t


Represents a color in CMYK color space.

typedef struct color_cmyk_t { 
    float c, m, y, k, a; 
} color_cmyk_t;  
Fields
c

Cyan component (0.0 to 1.0)

m

Magenta component (0.0 to 1.0)

y

Yellow component (0.0 to 1.0)

k

Black component (0.0 to 1.0)

a

Alpha transparency component (0.0 to 1.0)

Discussion

The CMYK color space is primarily used in printing processes, where colors are created by subtracting varying amounts of cyan, magenta, yellow, and black inks from white light. The 'K' in CMYK stands for black (key) to avoid confusion with blue. This color space is device-dependent and commonly used in professional printing workflows.


color_hsla_t


Structure representing HSLA (Hue, Saturation, Lightness, Alpha) colors.

typedef struct color_hsla_t { 
    float h, s, l, a; 
} color_hsla_t;  
Fields
h

Hue component (0.0 to 1.0, representing 0-360 degrees)

s

Saturation component (0.0 to 1.0)

l

Lightness component (0.0 to 1.0)

a

Alpha component (0.0 to 1.0)

Discussion

This structure holds HSLA color values where hue is in the range [0.0, 1.0] representing 0-360 degrees, saturation and lightness are in the range [0.0, 1.0], and alpha represents opacity from 0.0 (transparent) to 1.0 (opaque).


color_hsva_t


Structure representing HSVA (Hue, Saturation, Value, Alpha) colors.

typedef struct color_hsva_t { 
    float h, s, v, a; 
} color_hsva_t;  
Fields
h

Hue component (0.0 to 1.0, representing 0-360 degrees)

s

Saturation component (0.0 to 1.0)

v

Value/Brightness component (0.0 to 1.0)

a

Alpha component (0.0 to 1.0)

Discussion

This structure holds HSVA color values where hue is in the range [0.0, 1.0] representing 0-360 degrees, saturation and value are in the range [0.0, 1.0], and alpha represents opacity from 0.0 (transparent) to 1.0 (opaque).


color_int_t


A 32-bit unsigned integer type for representing colors.

typedef uint32_t color_int_t;  
Discussion

This type is used for color values stored as packed 32-bit integers, typically in RGBA format where each component occupies 8 bits. It provides a convenient alias for uint32_t when working with color data in integer form, making code more readable and self-documenting.


color_lab_t


Represents a color in CIE L*a*b* color space.

typedef struct color_lab_t { 
    float l, a, b, alpha; 
} color_lab_t;  
Fields
l

Lightness component (0.0 to 100.0, but can exceed these bounds)

a

Green-red axis component (typically -128.0 to 127.0, but can exceed these bounds)

b

Blue-yellow axis component (typically -128.0 to 127.0, but can exceed these bounds)

alpha

Alpha transparency component (0.0 to 1.0)

Discussion

The CIE L*a*b* color space is a device-independent color model designed to approximate human vision. It separates lightness from color information and is perceptually uniform.


color_rgb_t565


Represents a color in RGB565 format with alpha.

typedef struct color_rgb_t565 { 
    uint16_t rgb565; 
    uint8_t a; 
} color_rgb_t565;  
Fields
rgb565

Packed 16-bit RGB565 color value (5-bit R, 6-bit G, 5-bit B)

a

Alpha transparency component (0-255)

Discussion

RGB565 is a 16-bit color format commonly used in displays, embedded systems, and graphics hardware. It allocates 5 bits for red, 6 bits for green, and 5 bits for blue components, providing 65,536 possible colors. This format is efficient for memory usage while maintaining reasonable color fidelity, particularly for green hues which are more perceptually important.


color_rgba_t


Alias for color_t representing RGBA colors.

typedef color_t color_rgba_t;  
Discussion

This typedef provides an alternative name for the color_t type, emphasizing its RGBA nature. It is functionally identical to color_t.


color_rgbaf_t


Structure representing RGBA colors with floating-point components.

typedef struct color_rgbaf_t { 
    float r, g, b, a; 
} color_rgbaf_t;  
Fields
r

Red component (0.0 to 1.0)

g

Green component (0.0 to 1.0)

b

Blue component (0.0 to 1.0)

a

Alpha component (0.0 to 1.0)

Discussion

This structure holds RGBA color values as floating-point numbers in the range [0.0, 1.0]. The alpha channel represents opacity, where 0.0 is fully transparent and 1.0 is fully opaque.


color_t


Represents a color with red, green, blue, and alpha components.

typedef union color_t { 
    struct { 
        uint8_t r, g, b, a; 
        }; 
    uint32_t rgba; 
} color_t;  
Fields
r

Red component (0-255)

g

Green component (0-255)

b

Blue component (0-255)

a

Alpha component (0-255)

rgba

Packed RGBA value as 32-bit integer


color_xyz_t


Represents a color in CIE XYZ color space.

typedef struct color_xyz_t { 
    float x, y, z, a; 
} color_xyz_t;  
Fields
x

X component (red response, typically 0.0 to 1.0, but can exceed these bounds)

y

Y component (luminance/green response, typically 0.0 to 1.0, but can exceed these bounds)

z

Z component (blue response, typically 0.0 to 1.0, but can exceed these bounds)

a

Alpha transparency component (0.0 to 1.0)

Discussion

The CIE XYZ color space is a device-independent color model based on the human visual system's response to red, green, and blue stimuli. It serves as the foundation for other color spaces and is designed to encompass all colors visible to the human eye.


color_yuv_t


Represents a color in YUV color space.

typedef struct color_yuv_t { 
    float y, u, v, a; 
} color_yuv_t;  
Fields
y

Luminance component (brightness, typically 0.0 to 1.0)

u

Chrominance U component (blue-luminance difference, typically -0.5 to 0.5)

v

Chrominance V component (red-luminance difference, typically -0.5 to 0.5)

a

Alpha transparency component (0.0 to 1.0)

Discussion

The YUV color space separates luminance (Y) from chrominance (U and V) components. It is commonly used in video systems and digital broadcasting, with BT.601 standard coefficients used for the conversion.


Globals

color_alice_blue

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

color_antique_white

Predefined color constants for common web colors.

color_aqua

Predefined color constants for common web colors.

color_aquamarine

Predefined color constants for common web colors.

color_azure

Predefined color constants for common web colors.

color_beige

Predefined color constants for common web colors.

color_bisque

Predefined color constants for common web colors.

color_black

Predefined color constants for common web colors.

color_blanched_almond

Predefined color constants for common web colors.

color_blue

Predefined color constants for common web colors.

color_blue_violet

Predefined color constants for common web colors.

color_brown

Predefined color constants for common web colors.

color_burlywood

Predefined color constants for common web colors.

color_cadet_blue

Predefined color constants for common web colors.

color_chartreuse

Predefined color constants for common web colors.

color_chocolate

Predefined color constants for common web colors.

color_coral

Predefined color constants for common web colors.

color_cornflower_blue

Predefined color constants for common web colors.

color_cornsilk

Predefined color constants for common web colors.

color_crimson

Predefined color constants for common web colors.

color_cyan

Predefined color constants for common web colors.

color_dark_blue

Predefined color constants for common web colors.

color_dark_cyan

Predefined color constants for common web colors.

color_dark_goldenrod

Predefined color constants for common web colors.

color_dark_gray

Predefined color constants for common web colors.

color_dark_green

Predefined color constants for common web colors.

color_dark_khaki

Predefined color constants for common web colors.

color_dark_magenta

Predefined color constants for common web colors.

color_dark_olive_green

Predefined color constants for common web colors.

color_dark_orange

Predefined color constants for common web colors.

color_dark_orchid

Predefined color constants for common web colors.

color_dark_red

Predefined color constants for common web colors.

color_dark_salmon

Predefined color constants for common web colors.

color_dark_sea_green

Predefined color constants for common web colors.

color_dark_slate_blue

Predefined color constants for common web colors.

color_dark_slate_gray

Predefined color constants for common web colors.

color_dark_turquoise

Predefined color constants for common web colors.

color_dark_violet

Predefined color constants for common web colors.

color_deep_pink

Predefined color constants for common web colors.

color_deep_sky_blue

Predefined color constants for common web colors.

color_dim_gray

Predefined color constants for common web colors.

color_dodger_blue

Predefined color constants for common web colors.

color_firebrick

Predefined color constants for common web colors.

color_floral_white

Predefined color constants for common web colors.

color_forest_green

Predefined color constants for common web colors.

color_fuchsia

Predefined color constants for common web colors.

color_gainsboro

Predefined color constants for common web colors.

color_ghost_white

Predefined color constants for common web colors.

color_gold

Predefined color constants for common web colors.

color_goldenrod

Predefined color constants for common web colors.

color_gray

Predefined color constants for common web colors.

color_green

Predefined color constants for common web colors.

color_green_yellow

Predefined color constants for common web colors.

color_honeydew

Predefined color constants for common web colors.

color_hot_pink

Predefined color constants for common web colors.

color_indian_red

Predefined color constants for common web colors.

color_indigo

Predefined color constants for common web colors.

color_ivory

Predefined color constants for common web colors.

color_khaki

Predefined color constants for common web colors.

color_lavender

Predefined color constants for common web colors.

color_lavender_blush

Predefined color constants for common web colors.

color_lawn_green

Predefined color constants for common web colors.

color_lemon_chiffon

Predefined color constants for common web colors.

color_light_blue

Predefined color constants for common web colors.

color_light_coral

Predefined color constants for common web colors.

color_light_cyan

Predefined color constants for common web colors.

color_light_goldenrod

Predefined color constants for common web colors.

color_light_gray

Predefined color constants for common web colors.

color_light_green

Predefined color constants for common web colors.

color_light_pink

Predefined color constants for common web colors.

color_light_salmon

Predefined color constants for common web colors.

color_light_sea_green

Predefined color constants for common web colors.

color_light_sky_blue

Predefined color constants for common web colors.

color_light_slate_gray

Predefined color constants for common web colors.

color_light_steel_blue

Predefined color constants for common web colors.

color_light_yellow

Predefined color constants for common web colors.

color_lime

Predefined color constants for common web colors.

color_lime_green

Predefined color constants for common web colors.

color_linen

Predefined color constants for common web colors.

color_magenta

Predefined color constants for common web colors.

color_maroon

Predefined color constants for common web colors.

color_medium_aquamarine

Predefined color constants for common web colors.

color_medium_blue

Predefined color constants for common web colors.

color_medium_orchid

Predefined color constants for common web colors.

color_medium_purple

Predefined color constants for common web colors.

color_medium_sea_green

Predefined color constants for common web colors.

color_medium_slate_blue

Predefined color constants for common web colors.

color_medium_spring_green

Predefined color constants for common web colors.

color_medium_turquoise

Predefined color constants for common web colors.

color_medium_violet_red

Predefined color constants for common web colors.

color_midnight_blue

Predefined color constants for common web colors.

color_mint_cream

Predefined color constants for common web colors.

color_misty_rose

Predefined color constants for common web colors.

color_moccasin

Predefined color constants for common web colors.

color_navajo_white

Predefined color constants for common web colors.

color_navy_blue

Predefined color constants for common web colors.

color_old_lace

Predefined color constants for common web colors.

color_olive

Predefined color constants for common web colors.

color_olive_drab

Predefined color constants for common web colors.

color_orange

Predefined color constants for common web colors.

color_orange_red

Predefined color constants for common web colors.

color_orchid

Predefined color constants for common web colors.

color_pale_goldenrod

Predefined color constants for common web colors.

color_pale_green

Predefined color constants for common web colors.

color_pale_turquoise

Predefined color constants for common web colors.

color_pale_violet_red

Predefined color constants for common web colors.

color_papaya_whip

Predefined color constants for common web colors.

color_peach_puff

Predefined color constants for common web colors.

color_peru

Predefined color constants for common web colors.

color_pink

Predefined color constants for common web colors.

color_plum

Predefined color constants for common web colors.

color_powder_blue

Predefined color constants for common web colors.

color_purple

Predefined color constants for common web colors.

color_rebecca_purple

Predefined color constants for common web colors.

color_red

Predefined color constants for common web colors.

color_rosy_brown

Predefined color constants for common web colors.

color_royal_blue

Predefined color constants for common web colors.

color_saddle_brown

Predefined color constants for common web colors.

color_salmon

Predefined color constants for common web colors.

color_sandy_brown

Predefined color constants for common web colors.

color_sea_green

Predefined color constants for common web colors.

color_seashell

Predefined color constants for common web colors.

color_sienna

Predefined color constants for common web colors.

color_silver

Predefined color constants for common web colors.

color_sky_blue

Predefined color constants for common web colors.

color_slate_blue

Predefined color constants for common web colors.

color_slate_gray

Predefined color constants for common web colors.

color_snow

Predefined color constants for common web colors.

color_spring_green

Predefined color constants for common web colors.

color_steel_blue

Predefined color constants for common web colors.

color_tan

Predefined color constants for common web colors.

color_teal

Predefined color constants for common web colors.

color_thistle

Predefined color constants for common web colors.

color_tomato

Predefined color constants for common web colors.

color_transparent

Predefined color constants for common web colors.

color_turquoise

Predefined color constants for common web colors.

color_violet

Predefined color constants for common web colors.

color_web_gray

Predefined color constants for common web colors.

color_web_green

Predefined color constants for common web colors.

color_web_maroon

Predefined color constants for common web colors.

color_web_purple

Predefined color constants for common web colors.

color_wheat

Predefined color constants for common web colors.

color_white

Predefined color constants for common web colors.

color_white_smoke

Predefined color constants for common web colors.

color_yellow

Predefined color constants for common web colors.

color_yellow_green

Predefined color constants for common web colors.


color_alice_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_alice_blue = COLOR_ALICE_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_alice_blue = COLOR_ALICE_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_antique_white = COLOR_ANTIQUE_WHITE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_aqua = COLOR_AQUA;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_aquamarine = COLOR_AQUAMARINE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_azure = COLOR_AZURE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_beige = COLOR_BEIGE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_bisque = COLOR_BISQUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_black = COLOR_BLACK;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_blanched_almond = COLOR_BLANCHED_ALMOND;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_blue = COLOR_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_blue_violet = COLOR_BLUE_VIOLET;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_brown = COLOR_BROWN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_burlywood = COLOR_BURLYWOOD;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_cadet_blue = COLOR_CADET_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_chartreuse = COLOR_CHARTREUSE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_chocolate = COLOR_CHOCOLATE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_coral = COLOR_CORAL;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_cornflower_blue = COLOR_CORNFLOWER_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_cornsilk = COLOR_CORNSILK;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_crimson = COLOR_CRIMSON;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_cyan = COLOR_CYAN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_blue = COLOR_DARK_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_cyan = COLOR_DARK_CYAN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_goldenrod = COLOR_DARK_GOLDENROD;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_gray = COLOR_DARK_GRAY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_green = COLOR_DARK_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_khaki = COLOR_DARK_KHAKI;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_magenta = COLOR_DARK_MAGENTA;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_olive_green = COLOR_DARK_OLIVE_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_orange = COLOR_DARK_ORANGE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_orchid = COLOR_DARK_ORCHID;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_red = COLOR_DARK_RED;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_salmon = COLOR_DARK_SALMON;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_sea_green = COLOR_DARK_SEA_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_slate_blue = COLOR_DARK_SLATE_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_slate_gray = COLOR_DARK_SLATE_GRAY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_turquoise = COLOR_DARK_TURQUOISE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_violet = COLOR_DARK_VIOLET;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_deep_pink = COLOR_DEEP_PINK;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_deep_sky_blue = COLOR_DEEP_SKY_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dim_gray = COLOR_DIM_GRAY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dodger_blue = COLOR_DODGER_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_firebrick = COLOR_FIREBRICK;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_floral_white = COLOR_FLORAL_WHITE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_forest_green = COLOR_FOREST_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_fuchsia = COLOR_FUCHSIA;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_gainsboro = COLOR_GAINSBORO;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_ghost_white = COLOR_GHOST_WHITE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_gold = COLOR_GOLD;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_goldenrod = COLOR_GOLDENROD;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_gray = COLOR_GRAY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_web_gray = COLOR_WEB_GRAY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_green = COLOR_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_web_green = COLOR_WEB_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_green_yellow = COLOR_GREEN_YELLOW;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_honeydew = COLOR_HONEYDEW;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_hot_pink = COLOR_HOT_PINK;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_indian_red = COLOR_INDIAN_RED;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_indigo = COLOR_INDIGO;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_ivory = COLOR_IVORY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_khaki = COLOR_KHAKI;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_lavender = COLOR_LAVENDER;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_lavender_blush = COLOR_LAVENDER_BLUSH;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_lawn_green = COLOR_LAWN_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_lemon_chiffon = COLOR_LEMON_CHIFFON;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_blue = COLOR_LIGHT_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_coral = COLOR_LIGHT_CORAL;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_cyan = COLOR_LIGHT_CYAN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_goldenrod = COLOR_LIGHT_GOLDENROD;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_gray = COLOR_LIGHT_GRAY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_green = COLOR_LIGHT_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_pink = COLOR_LIGHT_PINK;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_salmon = COLOR_LIGHT_SALMON;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_sea_green = COLOR_LIGHT_SEA_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_sky_blue = COLOR_LIGHT_SKY_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_slate_gray = COLOR_LIGHT_SLATE_GRAY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_steel_blue = COLOR_LIGHT_STEEL_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_yellow = COLOR_LIGHT_YELLOW;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_lime = COLOR_LIME;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_lime_green = COLOR_LIME_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_linen = COLOR_LINEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_magenta = COLOR_MAGENTA;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_maroon = COLOR_MAROON;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_web_maroon = COLOR_WEB_MAROON;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_aquamarine = COLOR_MEDIUM_AQUAMARINE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_blue = COLOR_MEDIUM_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_orchid = COLOR_MEDIUM_ORCHID;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_purple = COLOR_MEDIUM_PURPLE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_sea_green = COLOR_MEDIUM_SEA_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_slate_blue = COLOR_MEDIUM_SLATE_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_spring_green = COLOR_MEDIUM_SPRING_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_turquoise = COLOR_MEDIUM_TURQUOISE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_violet_red = COLOR_MEDIUM_VIOLET_RED;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_midnight_blue = COLOR_MIDNIGHT_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_mint_cream = COLOR_MINT_CREAM;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_misty_rose = COLOR_MISTY_ROSE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_moccasin = COLOR_MOCCASIN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_navajo_white = COLOR_NAVAJO_WHITE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_navy_blue = COLOR_NAVY_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_old_lace = COLOR_OLD_LACE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_olive = COLOR_OLIVE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_olive_drab = COLOR_OLIVE_DRAB;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_orange = COLOR_ORANGE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_orange_red = COLOR_ORANGE_RED;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_orchid = COLOR_ORCHID;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_pale_goldenrod = COLOR_PALE_GOLDENROD;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_pale_green = COLOR_PALE_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_pale_turquoise = COLOR_PALE_TURQUOISE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_pale_violet_red = COLOR_PALE_VIOLET_RED;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_papaya_whip = COLOR_PAPAYA_WHIP;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_peach_puff = COLOR_PEACH_PUFF;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_peru = COLOR_PERU;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_pink = COLOR_PINK;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_plum = COLOR_PLUM;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_powder_blue = COLOR_POWDER_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_purple = COLOR_PURPLE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_web_purple = COLOR_WEB_PURPLE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_rebecca_purple = COLOR_REBECCA_PURPLE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_red = COLOR_RED;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_rosy_brown = COLOR_ROSY_BROWN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_royal_blue = COLOR_ROYAL_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_saddle_brown = COLOR_SADDLE_BROWN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_salmon = COLOR_SALMON;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_sandy_brown = COLOR_SANDY_BROWN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_sea_green = COLOR_SEA_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_seashell = COLOR_SEASHELL;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_sienna = COLOR_SIENNA;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_silver = COLOR_SILVER;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_sky_blue = COLOR_SKY_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_slate_blue = COLOR_SLATE_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_slate_gray = COLOR_SLATE_GRAY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_snow = COLOR_SNOW;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_spring_green = COLOR_SPRING_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_steel_blue = COLOR_STEEL_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_tan = COLOR_TAN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_teal = COLOR_TEAL;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_thistle = COLOR_THISTLE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_tomato = COLOR_TOMATO;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_transparent = COLOR_TRANSPARENT;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_turquoise = COLOR_TURQUOISE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_violet = COLOR_VIOLET;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_wheat = COLOR_WHEAT;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_white = COLOR_WHITE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_white_smoke = COLOR_WHITE_SMOKE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_yellow = COLOR_YELLOW;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_yellow_green = COLOR_YELLOW_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_antique_white


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_antique_white = COLOR_ANTIQUE_WHITE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_aqua


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_aqua = COLOR_AQUA;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_aquamarine


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_aquamarine = COLOR_AQUAMARINE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_azure


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_azure = COLOR_AZURE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_beige


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_beige = COLOR_BEIGE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_bisque


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_bisque = COLOR_BISQUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_black


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_black = COLOR_BLACK;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_blanched_almond


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_blanched_almond = COLOR_BLANCHED_ALMOND;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_blue = COLOR_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_blue_violet


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_blue_violet = COLOR_BLUE_VIOLET;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_brown


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_brown = COLOR_BROWN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_burlywood


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_burlywood = COLOR_BURLYWOOD;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_cadet_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_cadet_blue = COLOR_CADET_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_chartreuse


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_chartreuse = COLOR_CHARTREUSE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_chocolate


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_chocolate = COLOR_CHOCOLATE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_coral


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_coral = COLOR_CORAL;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_cornflower_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_cornflower_blue = COLOR_CORNFLOWER_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_cornsilk


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_cornsilk = COLOR_CORNSILK;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_crimson


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_crimson = COLOR_CRIMSON;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_cyan


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_cyan = COLOR_CYAN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_blue = COLOR_DARK_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_cyan


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_cyan = COLOR_DARK_CYAN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_goldenrod


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_goldenrod = COLOR_DARK_GOLDENROD;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_gray


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_gray = COLOR_DARK_GRAY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_green


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_green = COLOR_DARK_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_khaki


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_khaki = COLOR_DARK_KHAKI;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_magenta


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_magenta = COLOR_DARK_MAGENTA;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_olive_green


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_olive_green = COLOR_DARK_OLIVE_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_orange


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_orange = COLOR_DARK_ORANGE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_orchid


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_orchid = COLOR_DARK_ORCHID;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_red


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_red = COLOR_DARK_RED;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_salmon


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_salmon = COLOR_DARK_SALMON;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_sea_green


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_sea_green = COLOR_DARK_SEA_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_slate_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_slate_blue = COLOR_DARK_SLATE_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_slate_gray


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_slate_gray = COLOR_DARK_SLATE_GRAY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_turquoise


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_turquoise = COLOR_DARK_TURQUOISE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dark_violet


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dark_violet = COLOR_DARK_VIOLET;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_deep_pink


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_deep_pink = COLOR_DEEP_PINK;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_deep_sky_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_deep_sky_blue = COLOR_DEEP_SKY_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dim_gray


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dim_gray = COLOR_DIM_GRAY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_dodger_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_dodger_blue = COLOR_DODGER_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_firebrick


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_firebrick = COLOR_FIREBRICK;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_floral_white


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_floral_white = COLOR_FLORAL_WHITE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_forest_green


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_forest_green = COLOR_FOREST_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_fuchsia


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_fuchsia = COLOR_FUCHSIA;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_gainsboro


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_gainsboro = COLOR_GAINSBORO;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_ghost_white


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_ghost_white = COLOR_GHOST_WHITE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_gold


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_gold = COLOR_GOLD;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_goldenrod


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_goldenrod = COLOR_GOLDENROD;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_gray


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_gray = COLOR_GRAY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_green


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_green = COLOR_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_green_yellow


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_green_yellow = COLOR_GREEN_YELLOW;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_honeydew


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_honeydew = COLOR_HONEYDEW;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_hot_pink


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_hot_pink = COLOR_HOT_PINK;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_indian_red


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_indian_red = COLOR_INDIAN_RED;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_indigo


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_indigo = COLOR_INDIGO;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_ivory


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_ivory = COLOR_IVORY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_khaki


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_khaki = COLOR_KHAKI;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_lavender


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_lavender = COLOR_LAVENDER;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_lavender_blush


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_lavender_blush = COLOR_LAVENDER_BLUSH;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_lawn_green


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_lawn_green = COLOR_LAWN_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_lemon_chiffon


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_lemon_chiffon = COLOR_LEMON_CHIFFON;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_light_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_blue = COLOR_LIGHT_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_light_coral


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_coral = COLOR_LIGHT_CORAL;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_light_cyan


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_cyan = COLOR_LIGHT_CYAN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_light_goldenrod


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_goldenrod = COLOR_LIGHT_GOLDENROD;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_light_gray


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_gray = COLOR_LIGHT_GRAY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_light_green


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_green = COLOR_LIGHT_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_light_pink


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_pink = COLOR_LIGHT_PINK;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_light_salmon


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_salmon = COLOR_LIGHT_SALMON;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_light_sea_green


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_sea_green = COLOR_LIGHT_SEA_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_light_sky_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_sky_blue = COLOR_LIGHT_SKY_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_light_slate_gray


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_slate_gray = COLOR_LIGHT_SLATE_GRAY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_light_steel_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_steel_blue = COLOR_LIGHT_STEEL_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_light_yellow


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_light_yellow = COLOR_LIGHT_YELLOW;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_lime


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_lime = COLOR_LIME;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_lime_green


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_lime_green = COLOR_LIME_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_linen


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_linen = COLOR_LINEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_magenta


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_magenta = COLOR_MAGENTA;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_maroon


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_maroon = COLOR_MAROON;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_medium_aquamarine


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_aquamarine = COLOR_MEDIUM_AQUAMARINE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_medium_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_blue = COLOR_MEDIUM_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_medium_orchid


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_orchid = COLOR_MEDIUM_ORCHID;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_medium_purple


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_purple = COLOR_MEDIUM_PURPLE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_medium_sea_green


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_sea_green = COLOR_MEDIUM_SEA_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_medium_slate_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_slate_blue = COLOR_MEDIUM_SLATE_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_medium_spring_green


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_spring_green = COLOR_MEDIUM_SPRING_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_medium_turquoise


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_turquoise = COLOR_MEDIUM_TURQUOISE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_medium_violet_red


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_medium_violet_red = COLOR_MEDIUM_VIOLET_RED;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_midnight_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_midnight_blue = COLOR_MIDNIGHT_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_mint_cream


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_mint_cream = COLOR_MINT_CREAM;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_misty_rose


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_misty_rose = COLOR_MISTY_ROSE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_moccasin


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_moccasin = COLOR_MOCCASIN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_navajo_white


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_navajo_white = COLOR_NAVAJO_WHITE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_navy_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_navy_blue = COLOR_NAVY_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_old_lace


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_old_lace = COLOR_OLD_LACE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_olive


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_olive = COLOR_OLIVE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_olive_drab


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_olive_drab = COLOR_OLIVE_DRAB;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_orange


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_orange = COLOR_ORANGE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_orange_red


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_orange_red = COLOR_ORANGE_RED;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_orchid


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_orchid = COLOR_ORCHID;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_pale_goldenrod


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_pale_goldenrod = COLOR_PALE_GOLDENROD;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_pale_green


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_pale_green = COLOR_PALE_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_pale_turquoise


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_pale_turquoise = COLOR_PALE_TURQUOISE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_pale_violet_red


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_pale_violet_red = COLOR_PALE_VIOLET_RED;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_papaya_whip


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_papaya_whip = COLOR_PAPAYA_WHIP;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_peach_puff


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_peach_puff = COLOR_PEACH_PUFF;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_peru


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_peru = COLOR_PERU;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_pink


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_pink = COLOR_PINK;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_plum


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_plum = COLOR_PLUM;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_powder_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_powder_blue = COLOR_POWDER_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_purple


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_purple = COLOR_PURPLE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_rebecca_purple


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_rebecca_purple = COLOR_REBECCA_PURPLE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_red


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_red = COLOR_RED;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_rosy_brown


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_rosy_brown = COLOR_ROSY_BROWN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_royal_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_royal_blue = COLOR_ROYAL_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_saddle_brown


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_saddle_brown = COLOR_SADDLE_BROWN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_salmon


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_salmon = COLOR_SALMON;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_sandy_brown


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_sandy_brown = COLOR_SANDY_BROWN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_sea_green


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_sea_green = COLOR_SEA_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_seashell


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_seashell = COLOR_SEASHELL;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_sienna


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_sienna = COLOR_SIENNA;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_silver


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_silver = COLOR_SILVER;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_sky_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_sky_blue = COLOR_SKY_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_slate_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_slate_blue = COLOR_SLATE_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_slate_gray


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_slate_gray = COLOR_SLATE_GRAY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_snow


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_snow = COLOR_SNOW;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_spring_green


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_spring_green = COLOR_SPRING_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_steel_blue


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_steel_blue = COLOR_STEEL_BLUE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_tan


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_tan = COLOR_TAN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_teal


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_teal = COLOR_TEAL;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_thistle


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_thistle = COLOR_THISTLE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_tomato


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_tomato = COLOR_TOMATO;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_transparent


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_transparent = COLOR_TRANSPARENT;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_turquoise


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_turquoise = COLOR_TURQUOISE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_violet


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_violet = COLOR_VIOLET;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_web_gray


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_web_gray = COLOR_WEB_GRAY;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_web_green


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_web_green = COLOR_WEB_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_web_maroon


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_web_maroon = COLOR_WEB_MAROON;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_web_purple


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_web_purple = COLOR_WEB_PURPLE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_wheat


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_wheat = COLOR_WHEAT;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_white


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_white = COLOR_WHITE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_white_smoke


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_white_smoke = COLOR_WHITE_SMOKE;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_yellow


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_yellow = COLOR_YELLOW;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


color_yellow_green


Predefined color constants for common web colors.

static _CONSTEXPR color_t color_yellow_green = COLOR_YELLOW_GREEN;  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


Macro Definitions

COLOR_ALICE_BLUE_FLT

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_INT

Predefined color constants for common web colors.

COLOR_ALICE_BLUE_multideclaration_block

Predefined color constants for common web colors.

COLOR_ANTIQUE_WHITE

Predefined color constants for common web colors.

COLOR_ANTIQUE_WHITE_FLT

Predefined color constants for common web colors.

COLOR_ANTIQUE_WHITE_INT

Predefined color constants for common web colors.

COLOR_AQUA

Predefined color constants for common web colors.

COLOR_AQUA_FLT

Predefined color constants for common web colors.

COLOR_AQUA_INT

Predefined color constants for common web colors.

COLOR_AQUAMARINE

Predefined color constants for common web colors.

COLOR_AQUAMARINE_FLT

Predefined color constants for common web colors.

COLOR_AQUAMARINE_INT

Predefined color constants for common web colors.

COLOR_AZURE

Predefined color constants for common web colors.

COLOR_AZURE_FLT

Predefined color constants for common web colors.

COLOR_AZURE_INT

Predefined color constants for common web colors.

COLOR_BEIGE

Predefined color constants for common web colors.

COLOR_BEIGE_FLT

Predefined color constants for common web colors.

COLOR_BEIGE_INT

Predefined color constants for common web colors.

COLOR_BISQUE

Predefined color constants for common web colors.

COLOR_BISQUE_FLT

Predefined color constants for common web colors.

COLOR_BISQUE_INT

Predefined color constants for common web colors.

COLOR_BLACK

Predefined color constants for common web colors.

COLOR_BLACK_FLT

Predefined color constants for common web colors.

COLOR_BLACK_INT

Predefined color constants for common web colors.

COLOR_BLANCHED_ALMOND

Predefined color constants for common web colors.

COLOR_BLANCHED_ALMOND_FLT

Predefined color constants for common web colors.

COLOR_BLANCHED_ALMOND_INT

Predefined color constants for common web colors.

COLOR_BLUE

Predefined color constants for common web colors.

COLOR_BLUE_FLT

Predefined color constants for common web colors.

COLOR_BLUE_INT

Predefined color constants for common web colors.

COLOR_BLUE_VIOLET

Predefined color constants for common web colors.

COLOR_BLUE_VIOLET_FLT

Predefined color constants for common web colors.

COLOR_BLUE_VIOLET_INT

Predefined color constants for common web colors.

COLOR_BROWN

Predefined color constants for common web colors.

COLOR_BROWN_FLT

Predefined color constants for common web colors.

COLOR_BROWN_INT

Predefined color constants for common web colors.

COLOR_BURLYWOOD

Predefined color constants for common web colors.

COLOR_BURLYWOOD_FLT

Predefined color constants for common web colors.

COLOR_BURLYWOOD_INT

Predefined color constants for common web colors.

COLOR_CADET_BLUE

Predefined color constants for common web colors.

COLOR_CADET_BLUE_FLT

Predefined color constants for common web colors.

COLOR_CADET_BLUE_INT

Predefined color constants for common web colors.

COLOR_CHARTREUSE

Predefined color constants for common web colors.

COLOR_CHARTREUSE_FLT

Predefined color constants for common web colors.

COLOR_CHARTREUSE_INT

Predefined color constants for common web colors.

COLOR_CHOCOLATE

Predefined color constants for common web colors.

COLOR_CHOCOLATE_FLT

Predefined color constants for common web colors.

COLOR_CHOCOLATE_INT

Predefined color constants for common web colors.

COLOR_CORAL

Predefined color constants for common web colors.

COLOR_CORAL_FLT

Predefined color constants for common web colors.

COLOR_CORAL_INT

Predefined color constants for common web colors.

COLOR_CORNFLOWER_BLUE

Predefined color constants for common web colors.

COLOR_CORNFLOWER_BLUE_FLT

Predefined color constants for common web colors.

COLOR_CORNFLOWER_BLUE_INT

Predefined color constants for common web colors.

COLOR_CORNSILK

Predefined color constants for common web colors.

COLOR_CORNSILK_FLT

Predefined color constants for common web colors.

COLOR_CORNSILK_INT

Predefined color constants for common web colors.

COLOR_CRIMSON

Predefined color constants for common web colors.

COLOR_CRIMSON_FLT

Predefined color constants for common web colors.

COLOR_CRIMSON_INT

Predefined color constants for common web colors.

COLOR_CYAN

Predefined color constants for common web colors.

COLOR_CYAN_FLT

Predefined color constants for common web colors.

COLOR_CYAN_INT

Predefined color constants for common web colors.

COLOR_DARK_BLUE

Predefined color constants for common web colors.

COLOR_DARK_BLUE_FLT

Predefined color constants for common web colors.

COLOR_DARK_BLUE_INT

Predefined color constants for common web colors.

COLOR_DARK_CYAN

Predefined color constants for common web colors.

COLOR_DARK_CYAN_FLT

Predefined color constants for common web colors.

COLOR_DARK_CYAN_INT

Predefined color constants for common web colors.

COLOR_DARK_GOLDENROD

Predefined color constants for common web colors.

COLOR_DARK_GOLDENROD_FLT

Predefined color constants for common web colors.

COLOR_DARK_GOLDENROD_INT

Predefined color constants for common web colors.

COLOR_DARK_GRAY

Predefined color constants for common web colors.

COLOR_DARK_GRAY_FLT

Predefined color constants for common web colors.

COLOR_DARK_GRAY_INT

Predefined color constants for common web colors.

COLOR_DARK_GREEN

Predefined color constants for common web colors.

COLOR_DARK_GREEN_FLT

Predefined color constants for common web colors.

COLOR_DARK_GREEN_INT

Predefined color constants for common web colors.

COLOR_DARK_KHAKI

Predefined color constants for common web colors.

COLOR_DARK_KHAKI_FLT

Predefined color constants for common web colors.

COLOR_DARK_KHAKI_INT

Predefined color constants for common web colors.

COLOR_DARK_MAGENTA

Predefined color constants for common web colors.

COLOR_DARK_MAGENTA_FLT

Predefined color constants for common web colors.

COLOR_DARK_MAGENTA_INT

Predefined color constants for common web colors.

COLOR_DARK_OLIVE_GREEN

Predefined color constants for common web colors.

COLOR_DARK_OLIVE_GREEN_FLT

Predefined color constants for common web colors.

COLOR_DARK_OLIVE_GREEN_INT

Predefined color constants for common web colors.

COLOR_DARK_ORANGE

Predefined color constants for common web colors.

COLOR_DARK_ORANGE_FLT

Predefined color constants for common web colors.

COLOR_DARK_ORANGE_INT

Predefined color constants for common web colors.

COLOR_DARK_ORCHID

Predefined color constants for common web colors.

COLOR_DARK_ORCHID_FLT

Predefined color constants for common web colors.

COLOR_DARK_ORCHID_INT

Predefined color constants for common web colors.

COLOR_DARK_RED

Predefined color constants for common web colors.

COLOR_DARK_RED_FLT

Predefined color constants for common web colors.

COLOR_DARK_RED_INT

Predefined color constants for common web colors.

COLOR_DARK_SALMON

Predefined color constants for common web colors.

COLOR_DARK_SALMON_FLT

Predefined color constants for common web colors.

COLOR_DARK_SALMON_INT

Predefined color constants for common web colors.

COLOR_DARK_SEA_GREEN

Predefined color constants for common web colors.

COLOR_DARK_SEA_GREEN_FLT

Predefined color constants for common web colors.

COLOR_DARK_SEA_GREEN_INT

Predefined color constants for common web colors.

COLOR_DARK_SLATE_BLUE

Predefined color constants for common web colors.

COLOR_DARK_SLATE_BLUE_FLT

Predefined color constants for common web colors.

COLOR_DARK_SLATE_BLUE_INT

Predefined color constants for common web colors.

COLOR_DARK_SLATE_GRAY

Predefined color constants for common web colors.

COLOR_DARK_SLATE_GRAY_FLT

Predefined color constants for common web colors.

COLOR_DARK_SLATE_GRAY_INT

Predefined color constants for common web colors.

COLOR_DARK_TURQUOISE

Predefined color constants for common web colors.

COLOR_DARK_TURQUOISE_FLT

Predefined color constants for common web colors.

COLOR_DARK_TURQUOISE_INT

Predefined color constants for common web colors.

COLOR_DARK_VIOLET

Predefined color constants for common web colors.

COLOR_DARK_VIOLET_FLT

Predefined color constants for common web colors.

COLOR_DARK_VIOLET_INT

Predefined color constants for common web colors.

COLOR_DEEP_PINK

Predefined color constants for common web colors.

COLOR_DEEP_PINK_FLT

Predefined color constants for common web colors.

COLOR_DEEP_PINK_INT

Predefined color constants for common web colors.

COLOR_DEEP_SKY_BLUE

Predefined color constants for common web colors.

COLOR_DEEP_SKY_BLUE_FLT

Predefined color constants for common web colors.

COLOR_DEEP_SKY_BLUE_INT

Predefined color constants for common web colors.

COLOR_DIM_GRAY

Predefined color constants for common web colors.

COLOR_DIM_GRAY_FLT

Predefined color constants for common web colors.

COLOR_DIM_GRAY_INT

Predefined color constants for common web colors.

COLOR_DODGER_BLUE

Predefined color constants for common web colors.

COLOR_DODGER_BLUE_FLT

Predefined color constants for common web colors.

COLOR_DODGER_BLUE_INT

Predefined color constants for common web colors.

COLOR_FIREBRICK

Predefined color constants for common web colors.

COLOR_FIREBRICK_FLT

Predefined color constants for common web colors.

COLOR_FIREBRICK_INT

Predefined color constants for common web colors.

COLOR_FLORAL_WHITE

Predefined color constants for common web colors.

COLOR_FLORAL_WHITE_FLT

Predefined color constants for common web colors.

COLOR_FLORAL_WHITE_INT

Predefined color constants for common web colors.

COLOR_FOREST_GREEN

Predefined color constants for common web colors.

COLOR_FOREST_GREEN_FLT

Predefined color constants for common web colors.

COLOR_FOREST_GREEN_INT

Predefined color constants for common web colors.

COLOR_FUCHSIA

Predefined color constants for common web colors.

COLOR_FUCHSIA_FLT

Predefined color constants for common web colors.

COLOR_FUCHSIA_INT

Predefined color constants for common web colors.

COLOR_GAINSBORO

Predefined color constants for common web colors.

COLOR_GAINSBORO_FLT

Predefined color constants for common web colors.

COLOR_GAINSBORO_INT

Predefined color constants for common web colors.

COLOR_GHOST_WHITE

Predefined color constants for common web colors.

COLOR_GHOST_WHITE_FLT

Predefined color constants for common web colors.

COLOR_GHOST_WHITE_INT

Predefined color constants for common web colors.

COLOR_GOLD

Predefined color constants for common web colors.

COLOR_GOLD_FLT

Predefined color constants for common web colors.

COLOR_GOLD_INT

Predefined color constants for common web colors.

COLOR_GOLDENROD

Predefined color constants for common web colors.

COLOR_GOLDENROD_FLT

Predefined color constants for common web colors.

COLOR_GOLDENROD_INT

Predefined color constants for common web colors.

COLOR_GRAY

Predefined color constants for common web colors.

COLOR_GRAY_FLT

Predefined color constants for common web colors.

COLOR_GRAY_INT

Predefined color constants for common web colors.

COLOR_GREEN

Predefined color constants for common web colors.

COLOR_GREEN_FLT

Predefined color constants for common web colors.

COLOR_GREEN_INT

Predefined color constants for common web colors.

COLOR_GREEN_YELLOW

Predefined color constants for common web colors.

COLOR_GREEN_YELLOW_FLT

Predefined color constants for common web colors.

COLOR_GREEN_YELLOW_INT

Predefined color constants for common web colors.

COLOR_HONEYDEW

Predefined color constants for common web colors.

COLOR_HONEYDEW_FLT

Predefined color constants for common web colors.

COLOR_HONEYDEW_INT

Predefined color constants for common web colors.

COLOR_HOT_PINK

Predefined color constants for common web colors.

COLOR_HOT_PINK_FLT

Predefined color constants for common web colors.

COLOR_HOT_PINK_INT

Predefined color constants for common web colors.

COLOR_INDIAN_RED

Predefined color constants for common web colors.

COLOR_INDIAN_RED_FLT

Predefined color constants for common web colors.

COLOR_INDIAN_RED_INT

Predefined color constants for common web colors.

COLOR_INDIGO

Predefined color constants for common web colors.

COLOR_INDIGO_FLT

Predefined color constants for common web colors.

COLOR_INDIGO_INT

Predefined color constants for common web colors.

COLOR_IVORY

Predefined color constants for common web colors.

COLOR_IVORY_FLT

Predefined color constants for common web colors.

COLOR_IVORY_INT

Predefined color constants for common web colors.

COLOR_KHAKI

Predefined color constants for common web colors.

COLOR_KHAKI_FLT

Predefined color constants for common web colors.

COLOR_KHAKI_INT

Predefined color constants for common web colors.

COLOR_LAVENDER

Predefined color constants for common web colors.

COLOR_LAVENDER_BLUSH

Predefined color constants for common web colors.

COLOR_LAVENDER_BLUSH_FLT

Predefined color constants for common web colors.

COLOR_LAVENDER_BLUSH_INT

Predefined color constants for common web colors.

COLOR_LAVENDER_FLT

Predefined color constants for common web colors.

COLOR_LAVENDER_INT

Predefined color constants for common web colors.

COLOR_LAWN_GREEN

Predefined color constants for common web colors.

COLOR_LAWN_GREEN_FLT

Predefined color constants for common web colors.

COLOR_LAWN_GREEN_INT

Predefined color constants for common web colors.

COLOR_LEMON_CHIFFON

Predefined color constants for common web colors.

COLOR_LEMON_CHIFFON_FLT

Predefined color constants for common web colors.

COLOR_LEMON_CHIFFON_INT

Predefined color constants for common web colors.

COLOR_LIGHT_BLUE

Predefined color constants for common web colors.

COLOR_LIGHT_BLUE_FLT

Predefined color constants for common web colors.

COLOR_LIGHT_BLUE_INT

Predefined color constants for common web colors.

COLOR_LIGHT_CORAL

Predefined color constants for common web colors.

COLOR_LIGHT_CORAL_FLT

Predefined color constants for common web colors.

COLOR_LIGHT_CORAL_INT

Predefined color constants for common web colors.

COLOR_LIGHT_CYAN

Predefined color constants for common web colors.

COLOR_LIGHT_CYAN_FLT

Predefined color constants for common web colors.

COLOR_LIGHT_CYAN_INT

Predefined color constants for common web colors.

COLOR_LIGHT_GOLDENROD

Predefined color constants for common web colors.

COLOR_LIGHT_GOLDENROD_FLT

Predefined color constants for common web colors.

COLOR_LIGHT_GOLDENROD_INT

Predefined color constants for common web colors.

COLOR_LIGHT_GRAY

Predefined color constants for common web colors.

COLOR_LIGHT_GRAY_FLT

Predefined color constants for common web colors.

COLOR_LIGHT_GRAY_INT

Predefined color constants for common web colors.

COLOR_LIGHT_GREEN

Predefined color constants for common web colors.

COLOR_LIGHT_GREEN_FLT

Predefined color constants for common web colors.

COLOR_LIGHT_GREEN_INT

Predefined color constants for common web colors.

COLOR_LIGHT_PINK

Predefined color constants for common web colors.

COLOR_LIGHT_PINK_FLT

Predefined color constants for common web colors.

COLOR_LIGHT_PINK_INT

Predefined color constants for common web colors.

COLOR_LIGHT_SALMON

Predefined color constants for common web colors.

COLOR_LIGHT_SALMON_FLT

Predefined color constants for common web colors.

COLOR_LIGHT_SALMON_INT

Predefined color constants for common web colors.

COLOR_LIGHT_SEA_GREEN

Predefined color constants for common web colors.

COLOR_LIGHT_SEA_GREEN_FLT

Predefined color constants for common web colors.

COLOR_LIGHT_SEA_GREEN_INT

Predefined color constants for common web colors.

COLOR_LIGHT_SKY_BLUE

Predefined color constants for common web colors.

COLOR_LIGHT_SKY_BLUE_FLT

Predefined color constants for common web colors.

COLOR_LIGHT_SKY_BLUE_INT

Predefined color constants for common web colors.

COLOR_LIGHT_SLATE_GRAY

Predefined color constants for common web colors.

COLOR_LIGHT_SLATE_GRAY_FLT

Predefined color constants for common web colors.

COLOR_LIGHT_SLATE_GRAY_INT

Predefined color constants for common web colors.

COLOR_LIGHT_STEEL_BLUE

Predefined color constants for common web colors.

COLOR_LIGHT_STEEL_BLUE_FLT

Predefined color constants for common web colors.

COLOR_LIGHT_STEEL_BLUE_INT

Predefined color constants for common web colors.

COLOR_LIGHT_YELLOW

Predefined color constants for common web colors.

COLOR_LIGHT_YELLOW_FLT

Predefined color constants for common web colors.

COLOR_LIGHT_YELLOW_INT

Predefined color constants for common web colors.

COLOR_LIME

Predefined color constants for common web colors.

COLOR_LIME_FLT

Predefined color constants for common web colors.

COLOR_LIME_GREEN

Predefined color constants for common web colors.

COLOR_LIME_GREEN_FLT

Predefined color constants for common web colors.

COLOR_LIME_GREEN_INT

Predefined color constants for common web colors.

COLOR_LIME_INT

Predefined color constants for common web colors.

COLOR_LINEN

Predefined color constants for common web colors.

COLOR_LINEN_FLT

Predefined color constants for common web colors.

COLOR_LINEN_INT

Predefined color constants for common web colors.

COLOR_MAGENTA

Predefined color constants for common web colors.

COLOR_MAGENTA_FLT

Predefined color constants for common web colors.

COLOR_MAGENTA_INT

Predefined color constants for common web colors.

COLOR_MAROON

Predefined color constants for common web colors.

COLOR_MAROON_FLT

Predefined color constants for common web colors.

COLOR_MAROON_INT

Predefined color constants for common web colors.

COLOR_MEDIUM_AQUAMARINE

Predefined color constants for common web colors.

COLOR_MEDIUM_AQUAMARINE_FLT

Predefined color constants for common web colors.

COLOR_MEDIUM_AQUAMARINE_INT

Predefined color constants for common web colors.

COLOR_MEDIUM_BLUE

Predefined color constants for common web colors.

COLOR_MEDIUM_BLUE_FLT

Predefined color constants for common web colors.

COLOR_MEDIUM_BLUE_INT

Predefined color constants for common web colors.

COLOR_MEDIUM_ORCHID

Predefined color constants for common web colors.

COLOR_MEDIUM_ORCHID_FLT

Predefined color constants for common web colors.

COLOR_MEDIUM_ORCHID_INT

Predefined color constants for common web colors.

COLOR_MEDIUM_PURPLE

Predefined color constants for common web colors.

COLOR_MEDIUM_PURPLE_FLT

Predefined color constants for common web colors.

COLOR_MEDIUM_PURPLE_INT

Predefined color constants for common web colors.

COLOR_MEDIUM_SEA_GREEN

Predefined color constants for common web colors.

COLOR_MEDIUM_SEA_GREEN_FLT

Predefined color constants for common web colors.

COLOR_MEDIUM_SEA_GREEN_INT

Predefined color constants for common web colors.

COLOR_MEDIUM_SLATE_BLUE

Predefined color constants for common web colors.

COLOR_MEDIUM_SLATE_BLUE_FLT

Predefined color constants for common web colors.

COLOR_MEDIUM_SLATE_BLUE_INT

Predefined color constants for common web colors.

COLOR_MEDIUM_SPRING_GREEN

Predefined color constants for common web colors.

COLOR_MEDIUM_SPRING_GREEN_FLT

Predefined color constants for common web colors.

COLOR_MEDIUM_SPRING_GREEN_INT

Predefined color constants for common web colors.

COLOR_MEDIUM_TURQUOISE

Predefined color constants for common web colors.

COLOR_MEDIUM_TURQUOISE_FLT

Predefined color constants for common web colors.

COLOR_MEDIUM_TURQUOISE_INT

Predefined color constants for common web colors.

COLOR_MEDIUM_VIOLET_RED

Predefined color constants for common web colors.

COLOR_MEDIUM_VIOLET_RED_FLT

Predefined color constants for common web colors.

COLOR_MEDIUM_VIOLET_RED_INT

Predefined color constants for common web colors.

COLOR_MIDNIGHT_BLUE

Predefined color constants for common web colors.

COLOR_MIDNIGHT_BLUE_FLT

Predefined color constants for common web colors.

COLOR_MIDNIGHT_BLUE_INT

Predefined color constants for common web colors.

COLOR_MINT_CREAM

Predefined color constants for common web colors.

COLOR_MINT_CREAM_FLT

Predefined color constants for common web colors.

COLOR_MINT_CREAM_INT

Predefined color constants for common web colors.

COLOR_MISTY_ROSE

Predefined color constants for common web colors.

COLOR_MISTY_ROSE_FLT

Predefined color constants for common web colors.

COLOR_MISTY_ROSE_INT

Predefined color constants for common web colors.

COLOR_MOCCASIN

Predefined color constants for common web colors.

COLOR_MOCCASIN_FLT

Predefined color constants for common web colors.

COLOR_MOCCASIN_INT

Predefined color constants for common web colors.

COLOR_NAVAJO_WHITE

Predefined color constants for common web colors.

COLOR_NAVAJO_WHITE_FLT

Predefined color constants for common web colors.

COLOR_NAVAJO_WHITE_INT

Predefined color constants for common web colors.

COLOR_NAVY_BLUE

Predefined color constants for common web colors.

COLOR_NAVY_BLUE_FLT

Predefined color constants for common web colors.

COLOR_NAVY_BLUE_INT

Predefined color constants for common web colors.

COLOR_OLD_LACE

Predefined color constants for common web colors.

COLOR_OLD_LACE_FLT

Predefined color constants for common web colors.

COLOR_OLD_LACE_INT

Predefined color constants for common web colors.

COLOR_OLIVE

Predefined color constants for common web colors.

COLOR_OLIVE_DRAB

Predefined color constants for common web colors.

COLOR_OLIVE_DRAB_FLT

Predefined color constants for common web colors.

COLOR_OLIVE_DRAB_INT

Predefined color constants for common web colors.

COLOR_OLIVE_FLT

Predefined color constants for common web colors.

COLOR_OLIVE_INT

Predefined color constants for common web colors.

COLOR_ORANGE

Predefined color constants for common web colors.

COLOR_ORANGE_FLT

Predefined color constants for common web colors.

COLOR_ORANGE_INT

Predefined color constants for common web colors.

COLOR_ORANGE_RED

Predefined color constants for common web colors.

COLOR_ORANGE_RED_FLT

Predefined color constants for common web colors.

COLOR_ORANGE_RED_INT

Predefined color constants for common web colors.

COLOR_ORCHID

Predefined color constants for common web colors.

COLOR_ORCHID_FLT

Predefined color constants for common web colors.

COLOR_ORCHID_INT

Predefined color constants for common web colors.

COLOR_PALE_GOLDENROD

Predefined color constants for common web colors.

COLOR_PALE_GOLDENROD_FLT

Predefined color constants for common web colors.

COLOR_PALE_GOLDENROD_INT

Predefined color constants for common web colors.

COLOR_PALE_GREEN

Predefined color constants for common web colors.

COLOR_PALE_GREEN_FLT

Predefined color constants for common web colors.

COLOR_PALE_GREEN_INT

Predefined color constants for common web colors.

COLOR_PALE_TURQUOISE

Predefined color constants for common web colors.

COLOR_PALE_TURQUOISE_FLT

Predefined color constants for common web colors.

COLOR_PALE_TURQUOISE_INT

Predefined color constants for common web colors.

COLOR_PALE_VIOLET_RED

Predefined color constants for common web colors.

COLOR_PALE_VIOLET_RED_FLT

Predefined color constants for common web colors.

COLOR_PALE_VIOLET_RED_INT

Predefined color constants for common web colors.

COLOR_PAPAYA_WHIP

Predefined color constants for common web colors.

COLOR_PAPAYA_WHIP_FLT

Predefined color constants for common web colors.

COLOR_PAPAYA_WHIP_INT

Predefined color constants for common web colors.

COLOR_PEACH_PUFF

Predefined color constants for common web colors.

COLOR_PEACH_PUFF_FLT

Predefined color constants for common web colors.

COLOR_PEACH_PUFF_INT

Predefined color constants for common web colors.

COLOR_PERU

Predefined color constants for common web colors.

COLOR_PERU_FLT

Predefined color constants for common web colors.

COLOR_PERU_INT

Predefined color constants for common web colors.

COLOR_PINK

Predefined color constants for common web colors.

COLOR_PINK_FLT

Predefined color constants for common web colors.

COLOR_PINK_INT

Predefined color constants for common web colors.

COLOR_PLUM

Predefined color constants for common web colors.

COLOR_PLUM_FLT

Predefined color constants for common web colors.

COLOR_PLUM_INT

Predefined color constants for common web colors.

COLOR_POWDER_BLUE

Predefined color constants for common web colors.

COLOR_POWDER_BLUE_FLT

Predefined color constants for common web colors.

COLOR_POWDER_BLUE_INT

Predefined color constants for common web colors.

COLOR_PURPLE

Predefined color constants for common web colors.

COLOR_PURPLE_FLT

Predefined color constants for common web colors.

COLOR_PURPLE_INT

Predefined color constants for common web colors.

COLOR_REBECCA_PURPLE

Predefined color constants for common web colors.

COLOR_REBECCA_PURPLE_FLT

Predefined color constants for common web colors.

COLOR_REBECCA_PURPLE_INT

Predefined color constants for common web colors.

COLOR_RED

Predefined color constants for common web colors.

COLOR_RED_FLT

Predefined color constants for common web colors.

COLOR_RED_INT

Predefined color constants for common web colors.

COLOR_ROSY_BROWN

Predefined color constants for common web colors.

COLOR_ROSY_BROWN_FLT

Predefined color constants for common web colors.

COLOR_ROSY_BROWN_INT

Predefined color constants for common web colors.

COLOR_ROYAL_BLUE

Predefined color constants for common web colors.

COLOR_ROYAL_BLUE_FLT

Predefined color constants for common web colors.

COLOR_ROYAL_BLUE_INT

Predefined color constants for common web colors.

COLOR_SADDLE_BROWN

Predefined color constants for common web colors.

COLOR_SADDLE_BROWN_FLT

Predefined color constants for common web colors.

COLOR_SADDLE_BROWN_INT

Predefined color constants for common web colors.

COLOR_SALMON

Predefined color constants for common web colors.

COLOR_SALMON_FLT

Predefined color constants for common web colors.

COLOR_SALMON_INT

Predefined color constants for common web colors.

COLOR_SANDY_BROWN

Predefined color constants for common web colors.

COLOR_SANDY_BROWN_FLT

Predefined color constants for common web colors.

COLOR_SANDY_BROWN_INT

Predefined color constants for common web colors.

COLOR_SEA_GREEN

Predefined color constants for common web colors.

COLOR_SEA_GREEN_FLT

Predefined color constants for common web colors.

COLOR_SEA_GREEN_INT

Predefined color constants for common web colors.

COLOR_SEASHELL

Predefined color constants for common web colors.

COLOR_SEASHELL_FLT

Predefined color constants for common web colors.

COLOR_SEASHELL_INT

Predefined color constants for common web colors.

COLOR_SIENNA

Predefined color constants for common web colors.

COLOR_SIENNA_FLT

Predefined color constants for common web colors.

COLOR_SIENNA_INT

Predefined color constants for common web colors.

COLOR_SILVER

Predefined color constants for common web colors.

COLOR_SILVER_FLT

Predefined color constants for common web colors.

COLOR_SILVER_INT

Predefined color constants for common web colors.

COLOR_SKY_BLUE

Predefined color constants for common web colors.

COLOR_SKY_BLUE_FLT

Predefined color constants for common web colors.

COLOR_SKY_BLUE_INT

Predefined color constants for common web colors.

COLOR_SLATE_BLUE

Predefined color constants for common web colors.

COLOR_SLATE_BLUE_FLT

Predefined color constants for common web colors.

COLOR_SLATE_BLUE_INT

Predefined color constants for common web colors.

COLOR_SLATE_GRAY

Predefined color constants for common web colors.

COLOR_SLATE_GRAY_FLT

Predefined color constants for common web colors.

COLOR_SLATE_GRAY_INT

Predefined color constants for common web colors.

COLOR_SNOW

Predefined color constants for common web colors.

COLOR_SNOW_FLT

Predefined color constants for common web colors.

COLOR_SNOW_INT

Predefined color constants for common web colors.

COLOR_SPRING_GREEN

Predefined color constants for common web colors.

COLOR_SPRING_GREEN_FLT

Predefined color constants for common web colors.

COLOR_SPRING_GREEN_INT

Predefined color constants for common web colors.

COLOR_STEEL_BLUE

Predefined color constants for common web colors.

COLOR_STEEL_BLUE_FLT

Predefined color constants for common web colors.

COLOR_STEEL_BLUE_INT

Predefined color constants for common web colors.

COLOR_TAN

Predefined color constants for common web colors.

COLOR_TAN_FLT

Predefined color constants for common web colors.

COLOR_TAN_INT

Predefined color constants for common web colors.

COLOR_TEAL

Predefined color constants for common web colors.

COLOR_TEAL_FLT

Predefined color constants for common web colors.

COLOR_TEAL_INT

Predefined color constants for common web colors.

COLOR_THISTLE

Predefined color constants for common web colors.

COLOR_THISTLE_FLT

Predefined color constants for common web colors.

COLOR_THISTLE_INT

Predefined color constants for common web colors.

COLOR_TOMATO

Predefined color constants for common web colors.

COLOR_TOMATO_FLT

Predefined color constants for common web colors.

COLOR_TOMATO_INT

Predefined color constants for common web colors.

COLOR_TRANSPARENT

Predefined color constants for common web colors.

COLOR_TRANSPARENT_FLT

Predefined color constants for common web colors.

COLOR_TRANSPARENT_INT

Predefined color constants for common web colors.

COLOR_TURQUOISE

Predefined color constants for common web colors.

COLOR_TURQUOISE_FLT

Predefined color constants for common web colors.

COLOR_TURQUOISE_INT

Predefined color constants for common web colors.

COLOR_VIOLET

Predefined color constants for common web colors.

COLOR_VIOLET_FLT

Predefined color constants for common web colors.

COLOR_VIOLET_INT

Predefined color constants for common web colors.

COLOR_WEB_GRAY

Predefined color constants for common web colors.

COLOR_WEB_GRAY_FLT

Predefined color constants for common web colors.

COLOR_WEB_GRAY_INT

Predefined color constants for common web colors.

COLOR_WEB_GREEN

Predefined color constants for common web colors.

COLOR_WEB_GREEN_FLT

Predefined color constants for common web colors.

COLOR_WEB_GREEN_INT

Predefined color constants for common web colors.

COLOR_WEB_MAROON

Predefined color constants for common web colors.

COLOR_WEB_MAROON_FLT

Predefined color constants for common web colors.

COLOR_WEB_MAROON_INT

Predefined color constants for common web colors.

COLOR_WEB_PURPLE

Predefined color constants for common web colors.

COLOR_WEB_PURPLE_FLT

Predefined color constants for common web colors.

COLOR_WEB_PURPLE_INT

Predefined color constants for common web colors.

COLOR_WHEAT

Predefined color constants for common web colors.

COLOR_WHEAT_FLT

Predefined color constants for common web colors.

COLOR_WHEAT_INT

Predefined color constants for common web colors.

COLOR_WHITE

Predefined color constants for common web colors.

COLOR_WHITE_FLT

Predefined color constants for common web colors.

COLOR_WHITE_INT

Predefined color constants for common web colors.

COLOR_WHITE_SMOKE

Predefined color constants for common web colors.

COLOR_WHITE_SMOKE_FLT

Predefined color constants for common web colors.

COLOR_WHITE_SMOKE_INT

Predefined color constants for common web colors.

COLOR_YELLOW

Predefined color constants for common web colors.

COLOR_YELLOW_FLT

Predefined color constants for common web colors.

COLOR_YELLOW_GREEN

Predefined color constants for common web colors.

COLOR_YELLOW_GREEN_FLT

Predefined color constants for common web colors.

COLOR_YELLOW_GREEN_INT

Predefined color constants for common web colors.

COLOR_YELLOW_INT

Predefined color constants for common web colors.


COLOR_ALICE_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_ALICE_BLUE_INT 0xF0F8FFFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ALICE_BLUE_multideclaration_block


Predefined color constants for common web colors.

#ifndef NO_COLOR_CONSTANTS 
#define COLOR_ALICE_BLUE  
#define COLOR_ALICE_BLUE_FLT  
#define COLOR_ALICE_BLUE_INT 0xF0F8FFFF 
static _CONSTEXPR color_t color_alice_blue = COLOR_ALICE_BLUE;  
#define COLOR_ANTIQUE_WHITE  
#define COLOR_ANTIQUE_WHITE_FLT  
#define COLOR_ANTIQUE_WHITE_INT 0xFAEBD7FF 
static _CONSTEXPR color_t color_antique_white = COLOR_ANTIQUE_WHITE;  
#define COLOR_AQUA  
#define COLOR_AQUA_FLT  
#define COLOR_AQUA_INT 0x00FFFFFF 
static _CONSTEXPR color_t color_aqua = COLOR_AQUA;  
#define COLOR_AQUAMARINE  
#define COLOR_AQUAMARINE_FLT  
#define COLOR_AQUAMARINE_INT 0x7FFFD4FF 
static _CONSTEXPR color_t color_aquamarine = COLOR_AQUAMARINE;  
#define COLOR_AZURE  
#define COLOR_AZURE_FLT  
#define COLOR_AZURE_INT 0xF0FFFFFF 
static _CONSTEXPR color_t color_azure = COLOR_AZURE;  
#define COLOR_BEIGE  
#define COLOR_BEIGE_FLT  
#define COLOR_BEIGE_INT 0xF5F5DCFF 
static _CONSTEXPR color_t color_beige = COLOR_BEIGE;  
#define COLOR_BISQUE  
#define COLOR_BISQUE_FLT  
#define COLOR_BISQUE_INT 0xFFE4C4FF 
static _CONSTEXPR color_t color_bisque = COLOR_BISQUE;  
#define COLOR_BLACK  
#define COLOR_BLACK_FLT  
#define COLOR_BLACK_INT 0x000000FF 
static _CONSTEXPR color_t color_black = COLOR_BLACK;  
#define COLOR_BLANCHED_ALMOND  
#define COLOR_BLANCHED_ALMOND_FLT  
#define COLOR_BLANCHED_ALMOND_INT 0xFFEBCDFF 
static _CONSTEXPR color_t color_blanched_almond = COLOR_BLANCHED_ALMOND;  
#define COLOR_BLUE  
#define COLOR_BLUE_FLT  
#define COLOR_BLUE_INT 0x0000FFFF 
static _CONSTEXPR color_t color_blue = COLOR_BLUE;  
#define COLOR_BLUE_VIOLET  
#define COLOR_BLUE_VIOLET_FLT  
#define COLOR_BLUE_VIOLET_INT 0x8A2BE2FF 
static _CONSTEXPR color_t color_blue_violet = COLOR_BLUE_VIOLET;  
#define COLOR_BROWN  
#define COLOR_BROWN_FLT  
#define COLOR_BROWN_INT 0xA52A2AFF 
static _CONSTEXPR color_t color_brown = COLOR_BROWN;  
#define COLOR_BURLYWOOD  
#define COLOR_BURLYWOOD_FLT  
#define COLOR_BURLYWOOD_INT 0xDEB887FF 
static _CONSTEXPR color_t color_burlywood = COLOR_BURLYWOOD;  
#define COLOR_CADET_BLUE  
#define COLOR_CADET_BLUE_FLT  
#define COLOR_CADET_BLUE_INT 0x5F9EA0FF 
static _CONSTEXPR color_t color_cadet_blue = COLOR_CADET_BLUE;  
#define COLOR_CHARTREUSE  
#define COLOR_CHARTREUSE_FLT  
#define COLOR_CHARTREUSE_INT 0x7FFF00FF 
static _CONSTEXPR color_t color_chartreuse = COLOR_CHARTREUSE;  
#define COLOR_CHOCOLATE  
#define COLOR_CHOCOLATE_FLT  
#define COLOR_CHOCOLATE_INT 0xD2691EFF 
static _CONSTEXPR color_t color_chocolate = COLOR_CHOCOLATE;  
#define COLOR_CORAL  
#define COLOR_CORAL_FLT  
#define COLOR_CORAL_INT 0xFF7F50FF 
static _CONSTEXPR color_t color_coral = COLOR_CORAL;  
#define COLOR_CORNFLOWER_BLUE  
#define COLOR_CORNFLOWER_BLUE_FLT  
#define COLOR_CORNFLOWER_BLUE_INT 0x6495EDFF 
static _CONSTEXPR color_t color_cornflower_blue = COLOR_CORNFLOWER_BLUE;  
#define COLOR_CORNSILK  
#define COLOR_CORNSILK_FLT  
#define COLOR_CORNSILK_INT 0xFFF8DCFF 
static _CONSTEXPR color_t color_cornsilk = COLOR_CORNSILK;  
#define COLOR_CRIMSON  
#define COLOR_CRIMSON_FLT  
#define COLOR_CRIMSON_INT 0xDC143CFF 
static _CONSTEXPR color_t color_crimson = COLOR_CRIMSON;  
#define COLOR_CYAN  
#define COLOR_CYAN_FLT  
#define COLOR_CYAN_INT 0x00FFFFFF 
static _CONSTEXPR color_t color_cyan = COLOR_CYAN;  
#define COLOR_DARK_BLUE  
#define COLOR_DARK_BLUE_FLT  
#define COLOR_DARK_BLUE_INT 0x00008BFF 
static _CONSTEXPR color_t color_dark_blue = COLOR_DARK_BLUE;  
#define COLOR_DARK_CYAN  
#define COLOR_DARK_CYAN_FLT  
#define COLOR_DARK_CYAN_INT 0x008B8BFF 
static _CONSTEXPR color_t color_dark_cyan = COLOR_DARK_CYAN;  
#define COLOR_DARK_GOLDENROD  
#define COLOR_DARK_GOLDENROD_FLT  
#define COLOR_DARK_GOLDENROD_INT 0xB8860BFF 
static _CONSTEXPR color_t color_dark_goldenrod = COLOR_DARK_GOLDENROD;  
#define COLOR_DARK_GRAY  
#define COLOR_DARK_GRAY_FLT  
#define COLOR_DARK_GRAY_INT 0xA9A9A9FF 
static _CONSTEXPR color_t color_dark_gray = COLOR_DARK_GRAY;  
#define COLOR_DARK_GREEN  
#define COLOR_DARK_GREEN_FLT  
#define COLOR_DARK_GREEN_INT 0x006400FF 
static _CONSTEXPR color_t color_dark_green = COLOR_DARK_GREEN;  
#define COLOR_DARK_KHAKI  
#define COLOR_DARK_KHAKI_FLT  
#define COLOR_DARK_KHAKI_INT 0xBDB76BFF 
static _CONSTEXPR color_t color_dark_khaki = COLOR_DARK_KHAKI;  
#define COLOR_DARK_MAGENTA  
#define COLOR_DARK_MAGENTA_FLT  
#define COLOR_DARK_MAGENTA_INT 0x8B008BFF 
static _CONSTEXPR color_t color_dark_magenta = COLOR_DARK_MAGENTA;  
#define COLOR_DARK_OLIVE_GREEN  
#define COLOR_DARK_OLIVE_GREEN_FLT  
#define COLOR_DARK_OLIVE_GREEN_INT 0x556B2FFF 
static _CONSTEXPR color_t color_dark_olive_green = COLOR_DARK_OLIVE_GREEN;  
#define COLOR_DARK_ORANGE  
#define COLOR_DARK_ORANGE_FLT  
#define COLOR_DARK_ORANGE_INT 0xFF8C00FF 
static _CONSTEXPR color_t color_dark_orange = COLOR_DARK_ORANGE;  
#define COLOR_DARK_ORCHID  
#define COLOR_DARK_ORCHID_FLT  
#define COLOR_DARK_ORCHID_INT 0x9932CCFF 
static _CONSTEXPR color_t color_dark_orchid = COLOR_DARK_ORCHID;  
#define COLOR_DARK_RED  
#define COLOR_DARK_RED_FLT  
#define COLOR_DARK_RED_INT 0x8B0000FF 
static _CONSTEXPR color_t color_dark_red = COLOR_DARK_RED;  
#define COLOR_DARK_SALMON  
#define COLOR_DARK_SALMON_FLT  
#define COLOR_DARK_SALMON_INT 0xE9967AFF 
static _CONSTEXPR color_t color_dark_salmon = COLOR_DARK_SALMON;  
#define COLOR_DARK_SEA_GREEN  
#define COLOR_DARK_SEA_GREEN_FLT  
#define COLOR_DARK_SEA_GREEN_INT 0x8FBC8FFF 
static _CONSTEXPR color_t color_dark_sea_green = COLOR_DARK_SEA_GREEN;  
#define COLOR_DARK_SLATE_BLUE  
#define COLOR_DARK_SLATE_BLUE_FLT  
#define COLOR_DARK_SLATE_BLUE_INT 0x483D8BFF 
static _CONSTEXPR color_t color_dark_slate_blue = COLOR_DARK_SLATE_BLUE;  
#define COLOR_DARK_SLATE_GRAY  
#define COLOR_DARK_SLATE_GRAY_FLT  
#define COLOR_DARK_SLATE_GRAY_INT 0x2F4F4FFF 
static _CONSTEXPR color_t color_dark_slate_gray = COLOR_DARK_SLATE_GRAY;  
#define COLOR_DARK_TURQUOISE  
#define COLOR_DARK_TURQUOISE_FLT  
#define COLOR_DARK_TURQUOISE_INT 0x00CED1FF 
static _CONSTEXPR color_t color_dark_turquoise = COLOR_DARK_TURQUOISE;  
#define COLOR_DARK_VIOLET  
#define COLOR_DARK_VIOLET_FLT  
#define COLOR_DARK_VIOLET_INT 0x9400D3FF 
static _CONSTEXPR color_t color_dark_violet = COLOR_DARK_VIOLET;  
#define COLOR_DEEP_PINK  
#define COLOR_DEEP_PINK_FLT  
#define COLOR_DEEP_PINK_INT 0xFF1493FF 
static _CONSTEXPR color_t color_deep_pink = COLOR_DEEP_PINK;  
#define COLOR_DEEP_SKY_BLUE  
#define COLOR_DEEP_SKY_BLUE_FLT  
#define COLOR_DEEP_SKY_BLUE_INT 0x00BFFFFF 
static _CONSTEXPR color_t color_deep_sky_blue = COLOR_DEEP_SKY_BLUE;  
#define COLOR_DIM_GRAY  
#define COLOR_DIM_GRAY_FLT  
#define COLOR_DIM_GRAY_INT 0x696969FF 
static _CONSTEXPR color_t color_dim_gray = COLOR_DIM_GRAY;  
#define COLOR_DODGER_BLUE  
#define COLOR_DODGER_BLUE_FLT  
#define COLOR_DODGER_BLUE_INT 0x1E90FFFF 
static _CONSTEXPR color_t color_dodger_blue = COLOR_DODGER_BLUE;  
#define COLOR_FIREBRICK  
#define COLOR_FIREBRICK_FLT  
#define COLOR_FIREBRICK_INT 0xB22222FF 
static _CONSTEXPR color_t color_firebrick = COLOR_FIREBRICK;  
#define COLOR_FLORAL_WHITE  
#define COLOR_FLORAL_WHITE_FLT  
#define COLOR_FLORAL_WHITE_INT 0xFFFAF0FF 
static _CONSTEXPR color_t color_floral_white = COLOR_FLORAL_WHITE;  
#define COLOR_FOREST_GREEN  
#define COLOR_FOREST_GREEN_FLT  
#define COLOR_FOREST_GREEN_INT 0x228B22FF 
static _CONSTEXPR color_t color_forest_green = COLOR_FOREST_GREEN;  
#define COLOR_FUCHSIA  
#define COLOR_FUCHSIA_FLT  
#define COLOR_FUCHSIA_INT 0xFF00FFFF 
static _CONSTEXPR color_t color_fuchsia = COLOR_FUCHSIA;  
#define COLOR_GAINSBORO  
#define COLOR_GAINSBORO_FLT  
#define COLOR_GAINSBORO_INT 0xDCDCDCFF 
static _CONSTEXPR color_t color_gainsboro = COLOR_GAINSBORO;  
#define COLOR_GHOST_WHITE  
#define COLOR_GHOST_WHITE_FLT  
#define COLOR_GHOST_WHITE_INT 0xF8F8FFFF 
static _CONSTEXPR color_t color_ghost_white = COLOR_GHOST_WHITE;  
#define COLOR_GOLD  
#define COLOR_GOLD_FLT  
#define COLOR_GOLD_INT 0xFFD700FF 
static _CONSTEXPR color_t color_gold = COLOR_GOLD;  
#define COLOR_GOLDENROD  
#define COLOR_GOLDENROD_FLT  
#define COLOR_GOLDENROD_INT 0xDAA520FF 
static _CONSTEXPR color_t color_goldenrod = COLOR_GOLDENROD;  
#define COLOR_GRAY  
#define COLOR_GRAY_FLT  
#define COLOR_GRAY_INT 0xBEBEBEFF 
static _CONSTEXPR color_t color_gray = COLOR_GRAY;  
#define COLOR_WEB_GRAY  
#define COLOR_WEB_GRAY_FLT  
#define COLOR_WEB_GRAY_INT 0x808080FF 
static _CONSTEXPR color_t color_web_gray = COLOR_WEB_GRAY;  
#define COLOR_GREEN  
#define COLOR_GREEN_FLT  
#define COLOR_GREEN_INT 0x00FF00FF 
static _CONSTEXPR color_t color_green = COLOR_GREEN;  
#define COLOR_WEB_GREEN  
#define COLOR_WEB_GREEN_FLT  
#define COLOR_WEB_GREEN_INT 0x008000FF 
static _CONSTEXPR color_t color_web_green = COLOR_WEB_GREEN;  
#define COLOR_GREEN_YELLOW  
#define COLOR_GREEN_YELLOW_FLT  
#define COLOR_GREEN_YELLOW_INT 0xADFF2FFF 
static _CONSTEXPR color_t color_green_yellow = COLOR_GREEN_YELLOW;  
#define COLOR_HONEYDEW  
#define COLOR_HONEYDEW_FLT  
#define COLOR_HONEYDEW_INT 0xF0FFF0FF 
static _CONSTEXPR color_t color_honeydew = COLOR_HONEYDEW;  
#define COLOR_HOT_PINK  
#define COLOR_HOT_PINK_FLT  
#define COLOR_HOT_PINK_INT 0xFF69B4FF 
static _CONSTEXPR color_t color_hot_pink = COLOR_HOT_PINK;  
#define COLOR_INDIAN_RED  
#define COLOR_INDIAN_RED_FLT  
#define COLOR_INDIAN_RED_INT 0xCD5C5CFF 
static _CONSTEXPR color_t color_indian_red = COLOR_INDIAN_RED;  
#define COLOR_INDIGO  
#define COLOR_INDIGO_FLT  
#define COLOR_INDIGO_INT 0x4B0082FF 
static _CONSTEXPR color_t color_indigo = COLOR_INDIGO;  
#define COLOR_IVORY  
#define COLOR_IVORY_FLT  
#define COLOR_IVORY_INT 0xFFFFF0FF 
static _CONSTEXPR color_t color_ivory = COLOR_IVORY;  
#define COLOR_KHAKI  
#define COLOR_KHAKI_FLT  
#define COLOR_KHAKI_INT 0xF0E68CFF 
static _CONSTEXPR color_t color_khaki = COLOR_KHAKI;  
#define COLOR_LAVENDER  
#define COLOR_LAVENDER_FLT  
#define COLOR_LAVENDER_INT 0xE6E6FAFF 
static _CONSTEXPR color_t color_lavender = COLOR_LAVENDER;  
#define COLOR_LAVENDER_BLUSH  
#define COLOR_LAVENDER_BLUSH_FLT  
#define COLOR_LAVENDER_BLUSH_INT 0xFFF0F5FF 
static _CONSTEXPR color_t color_lavender_blush = COLOR_LAVENDER_BLUSH;  
#define COLOR_LAWN_GREEN  
#define COLOR_LAWN_GREEN_FLT  
#define COLOR_LAWN_GREEN_INT 0x7CFC00FF 
static _CONSTEXPR color_t color_lawn_green = COLOR_LAWN_GREEN;  
#define COLOR_LEMON_CHIFFON  
#define COLOR_LEMON_CHIFFON_FLT  
#define COLOR_LEMON_CHIFFON_INT 0xFFFACDFF 
static _CONSTEXPR color_t color_lemon_chiffon = COLOR_LEMON_CHIFFON;  
#define COLOR_LIGHT_BLUE  
#define COLOR_LIGHT_BLUE_FLT  
#define COLOR_LIGHT_BLUE_INT 0xADD8E6FF 
static _CONSTEXPR color_t color_light_blue = COLOR_LIGHT_BLUE;  
#define COLOR_LIGHT_CORAL  
#define COLOR_LIGHT_CORAL_FLT  
#define COLOR_LIGHT_CORAL_INT 0xF08080FF 
static _CONSTEXPR color_t color_light_coral = COLOR_LIGHT_CORAL;  
#define COLOR_LIGHT_CYAN  
#define COLOR_LIGHT_CYAN_FLT  
#define COLOR_LIGHT_CYAN_INT 0xE0FFFFFF 
static _CONSTEXPR color_t color_light_cyan = COLOR_LIGHT_CYAN;  
#define COLOR_LIGHT_GOLDENROD  
#define COLOR_LIGHT_GOLDENROD_FLT  
#define COLOR_LIGHT_GOLDENROD_INT 0xFAFAD2FF 
static _CONSTEXPR color_t color_light_goldenrod = COLOR_LIGHT_GOLDENROD;  
#define COLOR_LIGHT_GRAY  
#define COLOR_LIGHT_GRAY_FLT  
#define COLOR_LIGHT_GRAY_INT 0xD3D3D3FF 
static _CONSTEXPR color_t color_light_gray = COLOR_LIGHT_GRAY;  
#define COLOR_LIGHT_GREEN  
#define COLOR_LIGHT_GREEN_FLT  
#define COLOR_LIGHT_GREEN_INT 0x90EE90FF 
static _CONSTEXPR color_t color_light_green = COLOR_LIGHT_GREEN;  
#define COLOR_LIGHT_PINK  
#define COLOR_LIGHT_PINK_FLT  
#define COLOR_LIGHT_PINK_INT 0xFFB6C1FF 
static _CONSTEXPR color_t color_light_pink = COLOR_LIGHT_PINK;  
#define COLOR_LIGHT_SALMON  
#define COLOR_LIGHT_SALMON_FLT  
#define COLOR_LIGHT_SALMON_INT 0xFFA07AFF 
static _CONSTEXPR color_t color_light_salmon = COLOR_LIGHT_SALMON;  
#define COLOR_LIGHT_SEA_GREEN  
#define COLOR_LIGHT_SEA_GREEN_FLT  
#define COLOR_LIGHT_SEA_GREEN_INT 0x20B2AAFF 
static _CONSTEXPR color_t color_light_sea_green = COLOR_LIGHT_SEA_GREEN;  
#define COLOR_LIGHT_SKY_BLUE  
#define COLOR_LIGHT_SKY_BLUE_FLT  
#define COLOR_LIGHT_SKY_BLUE_INT 0x87CEFAFF 
static _CONSTEXPR color_t color_light_sky_blue = COLOR_LIGHT_SKY_BLUE;  
#define COLOR_LIGHT_SLATE_GRAY  
#define COLOR_LIGHT_SLATE_GRAY_FLT  
#define COLOR_LIGHT_SLATE_GRAY_INT 0x778899FF 
static _CONSTEXPR color_t color_light_slate_gray = COLOR_LIGHT_SLATE_GRAY;  
#define COLOR_LIGHT_STEEL_BLUE  
#define COLOR_LIGHT_STEEL_BLUE_FLT  
#define COLOR_LIGHT_STEEL_BLUE_INT 0xB0C4DEFF 
static _CONSTEXPR color_t color_light_steel_blue = COLOR_LIGHT_STEEL_BLUE;  
#define COLOR_LIGHT_YELLOW  
#define COLOR_LIGHT_YELLOW_FLT  
#define COLOR_LIGHT_YELLOW_INT 0xFFFFE0FF 
static _CONSTEXPR color_t color_light_yellow = COLOR_LIGHT_YELLOW;  
#define COLOR_LIME  
#define COLOR_LIME_FLT  
#define COLOR_LIME_INT 0x00FF00FF 
static _CONSTEXPR color_t color_lime = COLOR_LIME;  
#define COLOR_LIME_GREEN  
#define COLOR_LIME_GREEN_FLT  
#define COLOR_LIME_GREEN_INT 0x32CD32FF 
static _CONSTEXPR color_t color_lime_green = COLOR_LIME_GREEN;  
#define COLOR_LINEN  
#define COLOR_LINEN_FLT  
#define COLOR_LINEN_INT 0xFAF0E6FF 
static _CONSTEXPR color_t color_linen = COLOR_LINEN;  
#define COLOR_MAGENTA  
#define COLOR_MAGENTA_FLT  
#define COLOR_MAGENTA_INT 0xFF00FFFF 
static _CONSTEXPR color_t color_magenta = COLOR_MAGENTA;  
#define COLOR_MAROON  
#define COLOR_MAROON_FLT  
#define COLOR_MAROON_INT 0xB03060FF 
static _CONSTEXPR color_t color_maroon = COLOR_MAROON;  
#define COLOR_WEB_MAROON  
#define COLOR_WEB_MAROON_FLT  
#define COLOR_WEB_MAROON_INT 0x800000FF 
static _CONSTEXPR color_t color_web_maroon = COLOR_WEB_MAROON;  
#define COLOR_MEDIUM_AQUAMARINE  
#define COLOR_MEDIUM_AQUAMARINE_FLT  
#define COLOR_MEDIUM_AQUAMARINE_INT 0x66CDAAFF 
static _CONSTEXPR color_t color_medium_aquamarine = COLOR_MEDIUM_AQUAMARINE;  
#define COLOR_MEDIUM_BLUE  
#define COLOR_MEDIUM_BLUE_FLT  
#define COLOR_MEDIUM_BLUE_INT 0x0000CDFF 
static _CONSTEXPR color_t color_medium_blue = COLOR_MEDIUM_BLUE;  
#define COLOR_MEDIUM_ORCHID  
#define COLOR_MEDIUM_ORCHID_FLT  
#define COLOR_MEDIUM_ORCHID_INT 0xBA55D3FF 
static _CONSTEXPR color_t color_medium_orchid = COLOR_MEDIUM_ORCHID;  
#define COLOR_MEDIUM_PURPLE  
#define COLOR_MEDIUM_PURPLE_FLT  
#define COLOR_MEDIUM_PURPLE_INT 0x9370DBFF 
static _CONSTEXPR color_t color_medium_purple = COLOR_MEDIUM_PURPLE;  
#define COLOR_MEDIUM_SEA_GREEN  
#define COLOR_MEDIUM_SEA_GREEN_FLT  
#define COLOR_MEDIUM_SEA_GREEN_INT 0x3CB371FF 
static _CONSTEXPR color_t color_medium_sea_green = COLOR_MEDIUM_SEA_GREEN;  
#define COLOR_MEDIUM_SLATE_BLUE  
#define COLOR_MEDIUM_SLATE_BLUE_FLT  
#define COLOR_MEDIUM_SLATE_BLUE_INT 0x7B68EEFF 
static _CONSTEXPR color_t color_medium_slate_blue = COLOR_MEDIUM_SLATE_BLUE;  
#define COLOR_MEDIUM_SPRING_GREEN  
#define COLOR_MEDIUM_SPRING_GREEN_FLT  
#define COLOR_MEDIUM_SPRING_GREEN_INT 0x00FA9AFF 
static _CONSTEXPR color_t color_medium_spring_green = COLOR_MEDIUM_SPRING_GREEN;  
#define COLOR_MEDIUM_TURQUOISE  
#define COLOR_MEDIUM_TURQUOISE_FLT  
#define COLOR_MEDIUM_TURQUOISE_INT 0x48D1CCFF 
static _CONSTEXPR color_t color_medium_turquoise = COLOR_MEDIUM_TURQUOISE;  
#define COLOR_MEDIUM_VIOLET_RED  
#define COLOR_MEDIUM_VIOLET_RED_FLT  
#define COLOR_MEDIUM_VIOLET_RED_INT 0xC71585FF 
static _CONSTEXPR color_t color_medium_violet_red = COLOR_MEDIUM_VIOLET_RED;  
#define COLOR_MIDNIGHT_BLUE  
#define COLOR_MIDNIGHT_BLUE_FLT  
#define COLOR_MIDNIGHT_BLUE_INT 0x191970FF 
static _CONSTEXPR color_t color_midnight_blue = COLOR_MIDNIGHT_BLUE;  
#define COLOR_MINT_CREAM  
#define COLOR_MINT_CREAM_FLT  
#define COLOR_MINT_CREAM_INT 0xF5FFFAFF 
static _CONSTEXPR color_t color_mint_cream = COLOR_MINT_CREAM;  
#define COLOR_MISTY_ROSE  
#define COLOR_MISTY_ROSE_FLT  
#define COLOR_MISTY_ROSE_INT 0xFFE4E1FF 
static _CONSTEXPR color_t color_misty_rose = COLOR_MISTY_ROSE;  
#define COLOR_MOCCASIN  
#define COLOR_MOCCASIN_FLT  
#define COLOR_MOCCASIN_INT 0xFFE4B5FF 
static _CONSTEXPR color_t color_moccasin = COLOR_MOCCASIN;  
#define COLOR_NAVAJO_WHITE  
#define COLOR_NAVAJO_WHITE_FLT  
#define COLOR_NAVAJO_WHITE_INT 0xFFDEADFF 
static _CONSTEXPR color_t color_navajo_white = COLOR_NAVAJO_WHITE;  
#define COLOR_NAVY_BLUE  
#define COLOR_NAVY_BLUE_FLT  
#define COLOR_NAVY_BLUE_INT 0x000080FF 
static _CONSTEXPR color_t color_navy_blue = COLOR_NAVY_BLUE;  
#define COLOR_OLD_LACE  
#define COLOR_OLD_LACE_FLT  
#define COLOR_OLD_LACE_INT 0xFDF5E6FF 
static _CONSTEXPR color_t color_old_lace = COLOR_OLD_LACE;  
#define COLOR_OLIVE  
#define COLOR_OLIVE_FLT  
#define COLOR_OLIVE_INT 0x808000FF 
static _CONSTEXPR color_t color_olive = COLOR_OLIVE;  
#define COLOR_OLIVE_DRAB  
#define COLOR_OLIVE_DRAB_FLT  
#define COLOR_OLIVE_DRAB_INT 0x6B8E23FF 
static _CONSTEXPR color_t color_olive_drab = COLOR_OLIVE_DRAB;  
#define COLOR_ORANGE  
#define COLOR_ORANGE_FLT  
#define COLOR_ORANGE_INT 0xFFA500FF 
static _CONSTEXPR color_t color_orange = COLOR_ORANGE;  
#define COLOR_ORANGE_RED  
#define COLOR_ORANGE_RED_FLT  
#define COLOR_ORANGE_RED_INT 0xFF4500FF 
static _CONSTEXPR color_t color_orange_red = COLOR_ORANGE_RED;  
#define COLOR_ORCHID  
#define COLOR_ORCHID_FLT  
#define COLOR_ORCHID_INT 0xDA70D6FF 
static _CONSTEXPR color_t color_orchid = COLOR_ORCHID;  
#define COLOR_PALE_GOLDENROD  
#define COLOR_PALE_GOLDENROD_FLT  
#define COLOR_PALE_GOLDENROD_INT 0xEEE8AAFF 
static _CONSTEXPR color_t color_pale_goldenrod = COLOR_PALE_GOLDENROD;  
#define COLOR_PALE_GREEN  
#define COLOR_PALE_GREEN_FLT  
#define COLOR_PALE_GREEN_INT 0x98FB98FF 
static _CONSTEXPR color_t color_pale_green = COLOR_PALE_GREEN;  
#define COLOR_PALE_TURQUOISE  
#define COLOR_PALE_TURQUOISE_FLT  
#define COLOR_PALE_TURQUOISE_INT 0xAFEEEEFF 
static _CONSTEXPR color_t color_pale_turquoise = COLOR_PALE_TURQUOISE;  
#define COLOR_PALE_VIOLET_RED  
#define COLOR_PALE_VIOLET_RED_FLT  
#define COLOR_PALE_VIOLET_RED_INT 0xDB7093FF 
static _CONSTEXPR color_t color_pale_violet_red = COLOR_PALE_VIOLET_RED;  
#define COLOR_PAPAYA_WHIP  
#define COLOR_PAPAYA_WHIP_FLT  
#define COLOR_PAPAYA_WHIP_INT 0xFFEFD5FF 
static _CONSTEXPR color_t color_papaya_whip = COLOR_PAPAYA_WHIP;  
#define COLOR_PEACH_PUFF  
#define COLOR_PEACH_PUFF_FLT  
#define COLOR_PEACH_PUFF_INT 0xFFDAB9FF 
static _CONSTEXPR color_t color_peach_puff = COLOR_PEACH_PUFF;  
#define COLOR_PERU  
#define COLOR_PERU_FLT  
#define COLOR_PERU_INT 0xCD853FFF 
static _CONSTEXPR color_t color_peru = COLOR_PERU;  
#define COLOR_PINK  
#define COLOR_PINK_FLT  
#define COLOR_PINK_INT 0xFFC0CBFF 
static _CONSTEXPR color_t color_pink = COLOR_PINK;  
#define COLOR_PLUM  
#define COLOR_PLUM_FLT  
#define COLOR_PLUM_INT 0xDDA0DDFF 
static _CONSTEXPR color_t color_plum = COLOR_PLUM;  
#define COLOR_POWDER_BLUE  
#define COLOR_POWDER_BLUE_FLT  
#define COLOR_POWDER_BLUE_INT 0xB0E0E6FF 
static _CONSTEXPR color_t color_powder_blue = COLOR_POWDER_BLUE;  
#define COLOR_PURPLE  
#define COLOR_PURPLE_FLT  
#define COLOR_PURPLE_INT 0xA020F0FF 
static _CONSTEXPR color_t color_purple = COLOR_PURPLE;  
#define COLOR_WEB_PURPLE  
#define COLOR_WEB_PURPLE_FLT  
#define COLOR_WEB_PURPLE_INT 0x800080FF 
static _CONSTEXPR color_t color_web_purple = COLOR_WEB_PURPLE;  
#define COLOR_REBECCA_PURPLE  
#define COLOR_REBECCA_PURPLE_FLT  
#define COLOR_REBECCA_PURPLE_INT 0x663399FF 
static _CONSTEXPR color_t color_rebecca_purple = COLOR_REBECCA_PURPLE;  
#define COLOR_RED  
#define COLOR_RED_FLT  
#define COLOR_RED_INT 0xFF0000FF 
static _CONSTEXPR color_t color_red = COLOR_RED;  
#define COLOR_ROSY_BROWN  
#define COLOR_ROSY_BROWN_FLT  
#define COLOR_ROSY_BROWN_INT 0xBC8F8FFF 
static _CONSTEXPR color_t color_rosy_brown = COLOR_ROSY_BROWN;  
#define COLOR_ROYAL_BLUE  
#define COLOR_ROYAL_BLUE_FLT  
#define COLOR_ROYAL_BLUE_INT 0x4169E1FF 
static _CONSTEXPR color_t color_royal_blue = COLOR_ROYAL_BLUE;  
#define COLOR_SADDLE_BROWN  
#define COLOR_SADDLE_BROWN_FLT  
#define COLOR_SADDLE_BROWN_INT 0x8B4513FF 
static _CONSTEXPR color_t color_saddle_brown = COLOR_SADDLE_BROWN;  
#define COLOR_SALMON  
#define COLOR_SALMON_FLT  
#define COLOR_SALMON_INT 0xFA8072FF 
static _CONSTEXPR color_t color_salmon = COLOR_SALMON;  
#define COLOR_SANDY_BROWN  
#define COLOR_SANDY_BROWN_FLT  
#define COLOR_SANDY_BROWN_INT 0xF4A460FF 
static _CONSTEXPR color_t color_sandy_brown = COLOR_SANDY_BROWN;  
#define COLOR_SEA_GREEN  
#define COLOR_SEA_GREEN_FLT  
#define COLOR_SEA_GREEN_INT 0x2E8B57FF 
static _CONSTEXPR color_t color_sea_green = COLOR_SEA_GREEN;  
#define COLOR_SEASHELL  
#define COLOR_SEASHELL_FLT  
#define COLOR_SEASHELL_INT 0xFFF5EEFF 
static _CONSTEXPR color_t color_seashell = COLOR_SEASHELL;  
#define COLOR_SIENNA  
#define COLOR_SIENNA_FLT  
#define COLOR_SIENNA_INT 0xA0522DFF 
static _CONSTEXPR color_t color_sienna = COLOR_SIENNA;  
#define COLOR_SILVER  
#define COLOR_SILVER_FLT  
#define COLOR_SILVER_INT 0xC0C0C0FF 
static _CONSTEXPR color_t color_silver = COLOR_SILVER;  
#define COLOR_SKY_BLUE  
#define COLOR_SKY_BLUE_FLT  
#define COLOR_SKY_BLUE_INT 0x87CEEBFF 
static _CONSTEXPR color_t color_sky_blue = COLOR_SKY_BLUE;  
#define COLOR_SLATE_BLUE  
#define COLOR_SLATE_BLUE_FLT  
#define COLOR_SLATE_BLUE_INT 0x6A5ACDFF 
static _CONSTEXPR color_t color_slate_blue = COLOR_SLATE_BLUE;  
#define COLOR_SLATE_GRAY  
#define COLOR_SLATE_GRAY_FLT  
#define COLOR_SLATE_GRAY_INT 0x708090FF 
static _CONSTEXPR color_t color_slate_gray = COLOR_SLATE_GRAY;  
#define COLOR_SNOW  
#define COLOR_SNOW_FLT  
#define COLOR_SNOW_INT 0xFFFAFAFF 
static _CONSTEXPR color_t color_snow = COLOR_SNOW;  
#define COLOR_SPRING_GREEN  
#define COLOR_SPRING_GREEN_FLT  
#define COLOR_SPRING_GREEN_INT 0x00FF7FFF 
static _CONSTEXPR color_t color_spring_green = COLOR_SPRING_GREEN;  
#define COLOR_STEEL_BLUE  
#define COLOR_STEEL_BLUE_FLT  
#define COLOR_STEEL_BLUE_INT 0x4682B4FF 
static _CONSTEXPR color_t color_steel_blue = COLOR_STEEL_BLUE;  
#define COLOR_TAN  
#define COLOR_TAN_FLT  
#define COLOR_TAN_INT 0xD2B48CFF 
static _CONSTEXPR color_t color_tan = COLOR_TAN;  
#define COLOR_TEAL  
#define COLOR_TEAL_FLT  
#define COLOR_TEAL_INT 0x008080FF 
static _CONSTEXPR color_t color_teal = COLOR_TEAL;  
#define COLOR_THISTLE  
#define COLOR_THISTLE_FLT  
#define COLOR_THISTLE_INT 0xD8BFD8FF 
static _CONSTEXPR color_t color_thistle = COLOR_THISTLE;  
#define COLOR_TOMATO  
#define COLOR_TOMATO_FLT  
#define COLOR_TOMATO_INT 0xFF6347FF 
static _CONSTEXPR color_t color_tomato = COLOR_TOMATO;  
#define COLOR_TRANSPARENT  
#define COLOR_TRANSPARENT_FLT  
#define COLOR_TRANSPARENT_INT 0x00000000 
static _CONSTEXPR color_t color_transparent = COLOR_TRANSPARENT;  
#define COLOR_TURQUOISE  
#define COLOR_TURQUOISE_FLT  
#define COLOR_TURQUOISE_INT 0x40E0D0FF 
static _CONSTEXPR color_t color_turquoise = COLOR_TURQUOISE;  
#define COLOR_VIOLET  
#define COLOR_VIOLET_FLT  
#define COLOR_VIOLET_INT 0xEE82EEFF 
static _CONSTEXPR color_t color_violet = COLOR_VIOLET;  
#define COLOR_WHEAT  
#define COLOR_WHEAT_FLT  
#define COLOR_WHEAT_INT 0xF5DEB3FF 
static _CONSTEXPR color_t color_wheat = COLOR_WHEAT;  
#define COLOR_WHITE  
#define COLOR_WHITE_FLT  
#define COLOR_WHITE_INT 0xFFFFFFFF 
static _CONSTEXPR color_t color_white = COLOR_WHITE;  
#define COLOR_WHITE_SMOKE  
#define COLOR_WHITE_SMOKE_FLT  
#define COLOR_WHITE_SMOKE_INT 0xF5F5F5FF 
static _CONSTEXPR color_t color_white_smoke = COLOR_WHITE_SMOKE;  
#define COLOR_YELLOW  
#define COLOR_YELLOW_FLT  
#define COLOR_YELLOW_INT 0xFFFF00FF 
static _CONSTEXPR color_t color_yellow = COLOR_YELLOW;  
#define COLOR_YELLOW_GREEN  
#define COLOR_YELLOW_GREEN_FLT  
#define COLOR_YELLOW_GREEN_INT 0x9ACD32FF 
static _CONSTEXPR color_t color_yellow_green = COLOR_YELLOW_GREEN;  
#endif  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also

COLOR_ALICE_BLUE_FLT

COLOR_ALICE_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_alice_blue

COLOR_ANTIQUE_WHITE

COLOR_ANTIQUE_WHITE_FLT

COLOR_ANTIQUE_WHITE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_antique_white

COLOR_AQUA

COLOR_AQUA_FLT

COLOR_AQUA_INT

COLOR_ALICE_BLUE_multideclaration_block

color_aqua

COLOR_AQUAMARINE

COLOR_AQUAMARINE_FLT

COLOR_AQUAMARINE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_aquamarine

COLOR_AZURE

COLOR_AZURE_FLT

COLOR_AZURE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_azure

COLOR_BEIGE

COLOR_BEIGE_FLT

COLOR_BEIGE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_beige

COLOR_BISQUE

COLOR_BISQUE_FLT

COLOR_BISQUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_bisque

COLOR_BLACK

COLOR_BLACK_FLT

COLOR_BLACK_INT

COLOR_ALICE_BLUE_multideclaration_block

color_black

COLOR_BLANCHED_ALMOND

COLOR_BLANCHED_ALMOND_FLT

COLOR_BLANCHED_ALMOND_INT

COLOR_ALICE_BLUE_multideclaration_block

color_blanched_almond

COLOR_BLUE

COLOR_BLUE_FLT

COLOR_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_blue

COLOR_BLUE_VIOLET

COLOR_BLUE_VIOLET_FLT

COLOR_BLUE_VIOLET_INT

COLOR_ALICE_BLUE_multideclaration_block

color_blue_violet

COLOR_BROWN

COLOR_BROWN_FLT

COLOR_BROWN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_brown

COLOR_BURLYWOOD

COLOR_BURLYWOOD_FLT

COLOR_BURLYWOOD_INT

COLOR_ALICE_BLUE_multideclaration_block

color_burlywood

COLOR_CADET_BLUE

COLOR_CADET_BLUE_FLT

COLOR_CADET_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_cadet_blue

COLOR_CHARTREUSE

COLOR_CHARTREUSE_FLT

COLOR_CHARTREUSE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_chartreuse

COLOR_CHOCOLATE

COLOR_CHOCOLATE_FLT

COLOR_CHOCOLATE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_chocolate

COLOR_CORAL

COLOR_CORAL_FLT

COLOR_CORAL_INT

COLOR_ALICE_BLUE_multideclaration_block

color_coral

COLOR_CORNFLOWER_BLUE

COLOR_CORNFLOWER_BLUE_FLT

COLOR_CORNFLOWER_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_cornflower_blue

COLOR_CORNSILK

COLOR_CORNSILK_FLT

COLOR_CORNSILK_INT

COLOR_ALICE_BLUE_multideclaration_block

color_cornsilk

COLOR_CRIMSON

COLOR_CRIMSON_FLT

COLOR_CRIMSON_INT

COLOR_ALICE_BLUE_multideclaration_block

color_crimson

COLOR_CYAN

COLOR_CYAN_FLT

COLOR_CYAN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_cyan

COLOR_DARK_BLUE

COLOR_DARK_BLUE_FLT

COLOR_DARK_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_blue

COLOR_DARK_CYAN

COLOR_DARK_CYAN_FLT

COLOR_DARK_CYAN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_cyan

COLOR_DARK_GOLDENROD

COLOR_DARK_GOLDENROD_FLT

COLOR_DARK_GOLDENROD_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_goldenrod

COLOR_DARK_GRAY

COLOR_DARK_GRAY_FLT

COLOR_DARK_GRAY_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_gray

COLOR_DARK_GREEN

COLOR_DARK_GREEN_FLT

COLOR_DARK_GREEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_green

COLOR_DARK_KHAKI

COLOR_DARK_KHAKI_FLT

COLOR_DARK_KHAKI_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_khaki

COLOR_DARK_MAGENTA

COLOR_DARK_MAGENTA_FLT

COLOR_DARK_MAGENTA_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_magenta

COLOR_DARK_OLIVE_GREEN

COLOR_DARK_OLIVE_GREEN_FLT

COLOR_DARK_OLIVE_GREEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_olive_green

COLOR_DARK_ORANGE

COLOR_DARK_ORANGE_FLT

COLOR_DARK_ORANGE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_orange

COLOR_DARK_ORCHID

COLOR_DARK_ORCHID_FLT

COLOR_DARK_ORCHID_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_orchid

COLOR_DARK_RED

COLOR_DARK_RED_FLT

COLOR_DARK_RED_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_red

COLOR_DARK_SALMON

COLOR_DARK_SALMON_FLT

COLOR_DARK_SALMON_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_salmon

COLOR_DARK_SEA_GREEN

COLOR_DARK_SEA_GREEN_FLT

COLOR_DARK_SEA_GREEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_sea_green

COLOR_DARK_SLATE_BLUE

COLOR_DARK_SLATE_BLUE_FLT

COLOR_DARK_SLATE_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_slate_blue

COLOR_DARK_SLATE_GRAY

COLOR_DARK_SLATE_GRAY_FLT

COLOR_DARK_SLATE_GRAY_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_slate_gray

COLOR_DARK_TURQUOISE

COLOR_DARK_TURQUOISE_FLT

COLOR_DARK_TURQUOISE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_turquoise

COLOR_DARK_VIOLET

COLOR_DARK_VIOLET_FLT

COLOR_DARK_VIOLET_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dark_violet

COLOR_DEEP_PINK

COLOR_DEEP_PINK_FLT

COLOR_DEEP_PINK_INT

COLOR_ALICE_BLUE_multideclaration_block

color_deep_pink

COLOR_DEEP_SKY_BLUE

COLOR_DEEP_SKY_BLUE_FLT

COLOR_DEEP_SKY_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_deep_sky_blue

COLOR_DIM_GRAY

COLOR_DIM_GRAY_FLT

COLOR_DIM_GRAY_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dim_gray

COLOR_DODGER_BLUE

COLOR_DODGER_BLUE_FLT

COLOR_DODGER_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_dodger_blue

COLOR_FIREBRICK

COLOR_FIREBRICK_FLT

COLOR_FIREBRICK_INT

COLOR_ALICE_BLUE_multideclaration_block

color_firebrick

COLOR_FLORAL_WHITE

COLOR_FLORAL_WHITE_FLT

COLOR_FLORAL_WHITE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_floral_white

COLOR_FOREST_GREEN

COLOR_FOREST_GREEN_FLT

COLOR_FOREST_GREEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_forest_green

COLOR_FUCHSIA

COLOR_FUCHSIA_FLT

COLOR_FUCHSIA_INT

COLOR_ALICE_BLUE_multideclaration_block

color_fuchsia

COLOR_GAINSBORO

COLOR_GAINSBORO_FLT

COLOR_GAINSBORO_INT

COLOR_ALICE_BLUE_multideclaration_block

color_gainsboro

COLOR_GHOST_WHITE

COLOR_GHOST_WHITE_FLT

COLOR_GHOST_WHITE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_ghost_white

COLOR_GOLD

COLOR_GOLD_FLT

COLOR_GOLD_INT

COLOR_ALICE_BLUE_multideclaration_block

color_gold

COLOR_GOLDENROD

COLOR_GOLDENROD_FLT

COLOR_GOLDENROD_INT

COLOR_ALICE_BLUE_multideclaration_block

color_goldenrod

COLOR_GRAY

COLOR_GRAY_FLT

COLOR_GRAY_INT

COLOR_ALICE_BLUE_multideclaration_block

color_gray

COLOR_WEB_GRAY

COLOR_WEB_GRAY_FLT

COLOR_WEB_GRAY_INT

COLOR_ALICE_BLUE_multideclaration_block

color_web_gray

COLOR_GREEN

COLOR_GREEN_FLT

COLOR_GREEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_green

COLOR_WEB_GREEN

COLOR_WEB_GREEN_FLT

COLOR_WEB_GREEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_web_green

COLOR_GREEN_YELLOW

COLOR_GREEN_YELLOW_FLT

COLOR_GREEN_YELLOW_INT

COLOR_ALICE_BLUE_multideclaration_block

color_green_yellow

COLOR_HONEYDEW

COLOR_HONEYDEW_FLT

COLOR_HONEYDEW_INT

COLOR_ALICE_BLUE_multideclaration_block

color_honeydew

COLOR_HOT_PINK

COLOR_HOT_PINK_FLT

COLOR_HOT_PINK_INT

COLOR_ALICE_BLUE_multideclaration_block

color_hot_pink

COLOR_INDIAN_RED

COLOR_INDIAN_RED_FLT

COLOR_INDIAN_RED_INT

COLOR_ALICE_BLUE_multideclaration_block

color_indian_red

COLOR_INDIGO

COLOR_INDIGO_FLT

COLOR_INDIGO_INT

COLOR_ALICE_BLUE_multideclaration_block

color_indigo

COLOR_IVORY

COLOR_IVORY_FLT

COLOR_IVORY_INT

COLOR_ALICE_BLUE_multideclaration_block

color_ivory

COLOR_KHAKI

COLOR_KHAKI_FLT

COLOR_KHAKI_INT

COLOR_ALICE_BLUE_multideclaration_block

color_khaki

COLOR_LAVENDER

COLOR_LAVENDER_FLT

COLOR_LAVENDER_INT

COLOR_ALICE_BLUE_multideclaration_block

color_lavender

COLOR_LAVENDER_BLUSH

COLOR_LAVENDER_BLUSH_FLT

COLOR_LAVENDER_BLUSH_INT

COLOR_ALICE_BLUE_multideclaration_block

color_lavender_blush

COLOR_LAWN_GREEN

COLOR_LAWN_GREEN_FLT

COLOR_LAWN_GREEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_lawn_green

COLOR_LEMON_CHIFFON

COLOR_LEMON_CHIFFON_FLT

COLOR_LEMON_CHIFFON_INT

COLOR_ALICE_BLUE_multideclaration_block

color_lemon_chiffon

COLOR_LIGHT_BLUE

COLOR_LIGHT_BLUE_FLT

COLOR_LIGHT_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_light_blue

COLOR_LIGHT_CORAL

COLOR_LIGHT_CORAL_FLT

COLOR_LIGHT_CORAL_INT

COLOR_ALICE_BLUE_multideclaration_block

color_light_coral

COLOR_LIGHT_CYAN

COLOR_LIGHT_CYAN_FLT

COLOR_LIGHT_CYAN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_light_cyan

COLOR_LIGHT_GOLDENROD

COLOR_LIGHT_GOLDENROD_FLT

COLOR_LIGHT_GOLDENROD_INT

COLOR_ALICE_BLUE_multideclaration_block

color_light_goldenrod

COLOR_LIGHT_GRAY

COLOR_LIGHT_GRAY_FLT

COLOR_LIGHT_GRAY_INT

COLOR_ALICE_BLUE_multideclaration_block

color_light_gray

COLOR_LIGHT_GREEN

COLOR_LIGHT_GREEN_FLT

COLOR_LIGHT_GREEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_light_green

COLOR_LIGHT_PINK

COLOR_LIGHT_PINK_FLT

COLOR_LIGHT_PINK_INT

COLOR_ALICE_BLUE_multideclaration_block

color_light_pink

COLOR_LIGHT_SALMON

COLOR_LIGHT_SALMON_FLT

COLOR_LIGHT_SALMON_INT

COLOR_ALICE_BLUE_multideclaration_block

color_light_salmon

COLOR_LIGHT_SEA_GREEN

COLOR_LIGHT_SEA_GREEN_FLT

COLOR_LIGHT_SEA_GREEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_light_sea_green

COLOR_LIGHT_SKY_BLUE

COLOR_LIGHT_SKY_BLUE_FLT

COLOR_LIGHT_SKY_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_light_sky_blue

COLOR_LIGHT_SLATE_GRAY

COLOR_LIGHT_SLATE_GRAY_FLT

COLOR_LIGHT_SLATE_GRAY_INT

COLOR_ALICE_BLUE_multideclaration_block

color_light_slate_gray

COLOR_LIGHT_STEEL_BLUE

COLOR_LIGHT_STEEL_BLUE_FLT

COLOR_LIGHT_STEEL_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_light_steel_blue

COLOR_LIGHT_YELLOW

COLOR_LIGHT_YELLOW_FLT

COLOR_LIGHT_YELLOW_INT

COLOR_ALICE_BLUE_multideclaration_block

color_light_yellow

COLOR_LIME

COLOR_LIME_FLT

COLOR_LIME_INT

COLOR_ALICE_BLUE_multideclaration_block

color_lime

COLOR_LIME_GREEN

COLOR_LIME_GREEN_FLT

COLOR_LIME_GREEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_lime_green

COLOR_LINEN

COLOR_LINEN_FLT

COLOR_LINEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_linen

COLOR_MAGENTA

COLOR_MAGENTA_FLT

COLOR_MAGENTA_INT

COLOR_ALICE_BLUE_multideclaration_block

color_magenta

COLOR_MAROON

COLOR_MAROON_FLT

COLOR_MAROON_INT

COLOR_ALICE_BLUE_multideclaration_block

color_maroon

COLOR_WEB_MAROON

COLOR_WEB_MAROON_FLT

COLOR_WEB_MAROON_INT

COLOR_ALICE_BLUE_multideclaration_block

color_web_maroon

COLOR_MEDIUM_AQUAMARINE

COLOR_MEDIUM_AQUAMARINE_FLT

COLOR_MEDIUM_AQUAMARINE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_medium_aquamarine

COLOR_MEDIUM_BLUE

COLOR_MEDIUM_BLUE_FLT

COLOR_MEDIUM_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_medium_blue

COLOR_MEDIUM_ORCHID

COLOR_MEDIUM_ORCHID_FLT

COLOR_MEDIUM_ORCHID_INT

COLOR_ALICE_BLUE_multideclaration_block

color_medium_orchid

COLOR_MEDIUM_PURPLE

COLOR_MEDIUM_PURPLE_FLT

COLOR_MEDIUM_PURPLE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_medium_purple

COLOR_MEDIUM_SEA_GREEN

COLOR_MEDIUM_SEA_GREEN_FLT

COLOR_MEDIUM_SEA_GREEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_medium_sea_green

COLOR_MEDIUM_SLATE_BLUE

COLOR_MEDIUM_SLATE_BLUE_FLT

COLOR_MEDIUM_SLATE_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_medium_slate_blue

COLOR_MEDIUM_SPRING_GREEN

COLOR_MEDIUM_SPRING_GREEN_FLT

COLOR_MEDIUM_SPRING_GREEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_medium_spring_green

COLOR_MEDIUM_TURQUOISE

COLOR_MEDIUM_TURQUOISE_FLT

COLOR_MEDIUM_TURQUOISE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_medium_turquoise

COLOR_MEDIUM_VIOLET_RED

COLOR_MEDIUM_VIOLET_RED_FLT

COLOR_MEDIUM_VIOLET_RED_INT

COLOR_ALICE_BLUE_multideclaration_block

color_medium_violet_red

COLOR_MIDNIGHT_BLUE

COLOR_MIDNIGHT_BLUE_FLT

COLOR_MIDNIGHT_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_midnight_blue

COLOR_MINT_CREAM

COLOR_MINT_CREAM_FLT

COLOR_MINT_CREAM_INT

COLOR_ALICE_BLUE_multideclaration_block

color_mint_cream

COLOR_MISTY_ROSE

COLOR_MISTY_ROSE_FLT

COLOR_MISTY_ROSE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_misty_rose

COLOR_MOCCASIN

COLOR_MOCCASIN_FLT

COLOR_MOCCASIN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_moccasin

COLOR_NAVAJO_WHITE

COLOR_NAVAJO_WHITE_FLT

COLOR_NAVAJO_WHITE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_navajo_white

COLOR_NAVY_BLUE

COLOR_NAVY_BLUE_FLT

COLOR_NAVY_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_navy_blue

COLOR_OLD_LACE

COLOR_OLD_LACE_FLT

COLOR_OLD_LACE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_old_lace

COLOR_OLIVE

COLOR_OLIVE_FLT

COLOR_OLIVE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_olive

COLOR_OLIVE_DRAB

COLOR_OLIVE_DRAB_FLT

COLOR_OLIVE_DRAB_INT

COLOR_ALICE_BLUE_multideclaration_block

color_olive_drab

COLOR_ORANGE

COLOR_ORANGE_FLT

COLOR_ORANGE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_orange

COLOR_ORANGE_RED

COLOR_ORANGE_RED_FLT

COLOR_ORANGE_RED_INT

COLOR_ALICE_BLUE_multideclaration_block

color_orange_red

COLOR_ORCHID

COLOR_ORCHID_FLT

COLOR_ORCHID_INT

COLOR_ALICE_BLUE_multideclaration_block

color_orchid

COLOR_PALE_GOLDENROD

COLOR_PALE_GOLDENROD_FLT

COLOR_PALE_GOLDENROD_INT

COLOR_ALICE_BLUE_multideclaration_block

color_pale_goldenrod

COLOR_PALE_GREEN

COLOR_PALE_GREEN_FLT

COLOR_PALE_GREEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_pale_green

COLOR_PALE_TURQUOISE

COLOR_PALE_TURQUOISE_FLT

COLOR_PALE_TURQUOISE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_pale_turquoise

COLOR_PALE_VIOLET_RED

COLOR_PALE_VIOLET_RED_FLT

COLOR_PALE_VIOLET_RED_INT

COLOR_ALICE_BLUE_multideclaration_block

color_pale_violet_red

COLOR_PAPAYA_WHIP

COLOR_PAPAYA_WHIP_FLT

COLOR_PAPAYA_WHIP_INT

COLOR_ALICE_BLUE_multideclaration_block

color_papaya_whip

COLOR_PEACH_PUFF

COLOR_PEACH_PUFF_FLT

COLOR_PEACH_PUFF_INT

COLOR_ALICE_BLUE_multideclaration_block

color_peach_puff

COLOR_PERU

COLOR_PERU_FLT

COLOR_PERU_INT

COLOR_ALICE_BLUE_multideclaration_block

color_peru

COLOR_PINK

COLOR_PINK_FLT

COLOR_PINK_INT

COLOR_ALICE_BLUE_multideclaration_block

color_pink

COLOR_PLUM

COLOR_PLUM_FLT

COLOR_PLUM_INT

COLOR_ALICE_BLUE_multideclaration_block

color_plum

COLOR_POWDER_BLUE

COLOR_POWDER_BLUE_FLT

COLOR_POWDER_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_powder_blue

COLOR_PURPLE

COLOR_PURPLE_FLT

COLOR_PURPLE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_purple

COLOR_WEB_PURPLE

COLOR_WEB_PURPLE_FLT

COLOR_WEB_PURPLE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_web_purple

COLOR_REBECCA_PURPLE

COLOR_REBECCA_PURPLE_FLT

COLOR_REBECCA_PURPLE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_rebecca_purple

COLOR_RED

COLOR_RED_FLT

COLOR_RED_INT

COLOR_ALICE_BLUE_multideclaration_block

color_red

COLOR_ROSY_BROWN

COLOR_ROSY_BROWN_FLT

COLOR_ROSY_BROWN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_rosy_brown

COLOR_ROYAL_BLUE

COLOR_ROYAL_BLUE_FLT

COLOR_ROYAL_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_royal_blue

COLOR_SADDLE_BROWN

COLOR_SADDLE_BROWN_FLT

COLOR_SADDLE_BROWN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_saddle_brown

COLOR_SALMON

COLOR_SALMON_FLT

COLOR_SALMON_INT

COLOR_ALICE_BLUE_multideclaration_block

color_salmon

COLOR_SANDY_BROWN

COLOR_SANDY_BROWN_FLT

COLOR_SANDY_BROWN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_sandy_brown

COLOR_SEA_GREEN

COLOR_SEA_GREEN_FLT

COLOR_SEA_GREEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_sea_green

COLOR_SEASHELL

COLOR_SEASHELL_FLT

COLOR_SEASHELL_INT

COLOR_ALICE_BLUE_multideclaration_block

color_seashell

COLOR_SIENNA

COLOR_SIENNA_FLT

COLOR_SIENNA_INT

COLOR_ALICE_BLUE_multideclaration_block

color_sienna

COLOR_SILVER

COLOR_SILVER_FLT

COLOR_SILVER_INT

COLOR_ALICE_BLUE_multideclaration_block

color_silver

COLOR_SKY_BLUE

COLOR_SKY_BLUE_FLT

COLOR_SKY_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_sky_blue

COLOR_SLATE_BLUE

COLOR_SLATE_BLUE_FLT

COLOR_SLATE_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_slate_blue

COLOR_SLATE_GRAY

COLOR_SLATE_GRAY_FLT

COLOR_SLATE_GRAY_INT

COLOR_ALICE_BLUE_multideclaration_block

color_slate_gray

COLOR_SNOW

COLOR_SNOW_FLT

COLOR_SNOW_INT

COLOR_ALICE_BLUE_multideclaration_block

color_snow

COLOR_SPRING_GREEN

COLOR_SPRING_GREEN_FLT

COLOR_SPRING_GREEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_spring_green

COLOR_STEEL_BLUE

COLOR_STEEL_BLUE_FLT

COLOR_STEEL_BLUE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_steel_blue

COLOR_TAN

COLOR_TAN_FLT

COLOR_TAN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_tan

COLOR_TEAL

COLOR_TEAL_FLT

COLOR_TEAL_INT

COLOR_ALICE_BLUE_multideclaration_block

color_teal

COLOR_THISTLE

COLOR_THISTLE_FLT

COLOR_THISTLE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_thistle

COLOR_TOMATO

COLOR_TOMATO_FLT

COLOR_TOMATO_INT

COLOR_ALICE_BLUE_multideclaration_block

color_tomato

COLOR_TRANSPARENT

COLOR_TRANSPARENT_FLT

COLOR_TRANSPARENT_INT

COLOR_ALICE_BLUE_multideclaration_block

color_transparent

COLOR_TURQUOISE

COLOR_TURQUOISE_FLT

COLOR_TURQUOISE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_turquoise

COLOR_VIOLET

COLOR_VIOLET_FLT

COLOR_VIOLET_INT

COLOR_ALICE_BLUE_multideclaration_block

color_violet

COLOR_WHEAT

COLOR_WHEAT_FLT

COLOR_WHEAT_INT

COLOR_ALICE_BLUE_multideclaration_block

color_wheat

COLOR_WHITE

COLOR_WHITE_FLT

COLOR_WHITE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_white

COLOR_WHITE_SMOKE

COLOR_WHITE_SMOKE_FLT

COLOR_WHITE_SMOKE_INT

COLOR_ALICE_BLUE_multideclaration_block

color_white_smoke

COLOR_YELLOW

COLOR_YELLOW_FLT

COLOR_YELLOW_INT

COLOR_ALICE_BLUE_multideclaration_block

color_yellow

COLOR_YELLOW_GREEN

COLOR_YELLOW_GREEN_FLT

COLOR_YELLOW_GREEN_INT

COLOR_ALICE_BLUE_multideclaration_block

color_yellow_green


COLOR_ANTIQUE_WHITE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ANTIQUE_WHITE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ANTIQUE_WHITE_INT


Predefined color constants for common web colors.

#define COLOR_ANTIQUE_WHITE_INT 0xFAEBD7FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_AQUA


Predefined color constants for common web colors.

#define COLOR_AQUA  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_AQUA_FLT


Predefined color constants for common web colors.

#define COLOR_AQUA_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_AQUA_INT


Predefined color constants for common web colors.

#define COLOR_AQUA_INT 0x00FFFFFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_AQUAMARINE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_AQUAMARINE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_AQUAMARINE_INT


Predefined color constants for common web colors.

#define COLOR_AQUAMARINE_INT 0x7FFFD4FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_AZURE


Predefined color constants for common web colors.

#define COLOR_AZURE  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_AZURE_FLT


Predefined color constants for common web colors.

#define COLOR_AZURE_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_AZURE_INT


Predefined color constants for common web colors.

#define COLOR_AZURE_INT 0xF0FFFFFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BEIGE


Predefined color constants for common web colors.

#define COLOR_BEIGE  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BEIGE_FLT


Predefined color constants for common web colors.

#define COLOR_BEIGE_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BEIGE_INT


Predefined color constants for common web colors.

#define COLOR_BEIGE_INT 0xF5F5DCFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BISQUE


Predefined color constants for common web colors.

#define COLOR_BISQUE  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BISQUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BISQUE_INT


Predefined color constants for common web colors.

#define COLOR_BISQUE_INT 0xFFE4C4FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BLACK


Predefined color constants for common web colors.

#define COLOR_BLACK  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BLACK_FLT


Predefined color constants for common web colors.

#define COLOR_BLACK_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BLACK_INT


Predefined color constants for common web colors.

#define COLOR_BLACK_INT 0x000000FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BLANCHED_ALMOND


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BLANCHED_ALMOND_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BLANCHED_ALMOND_INT


Predefined color constants for common web colors.

#define COLOR_BLANCHED_ALMOND_INT 0xFFEBCDFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BLUE


Predefined color constants for common web colors.

#define COLOR_BLUE  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BLUE_FLT


Predefined color constants for common web colors.

#define COLOR_BLUE_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_BLUE_INT 0x0000FFFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BLUE_VIOLET


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BLUE_VIOLET_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BLUE_VIOLET_INT


Predefined color constants for common web colors.

#define COLOR_BLUE_VIOLET_INT 0x8A2BE2FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BROWN


Predefined color constants for common web colors.

#define COLOR_BROWN  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BROWN_FLT


Predefined color constants for common web colors.

#define COLOR_BROWN_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BROWN_INT


Predefined color constants for common web colors.

#define COLOR_BROWN_INT 0xA52A2AFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BURLYWOOD


Predefined color constants for common web colors.

#define COLOR_BURLYWOOD  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BURLYWOOD_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_BURLYWOOD_INT


Predefined color constants for common web colors.

#define COLOR_BURLYWOOD_INT 0xDEB887FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CADET_BLUE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CADET_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CADET_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_CADET_BLUE_INT 0x5F9EA0FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CHARTREUSE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CHARTREUSE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CHARTREUSE_INT


Predefined color constants for common web colors.

#define COLOR_CHARTREUSE_INT 0x7FFF00FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CHOCOLATE


Predefined color constants for common web colors.

#define COLOR_CHOCOLATE  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CHOCOLATE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CHOCOLATE_INT


Predefined color constants for common web colors.

#define COLOR_CHOCOLATE_INT 0xD2691EFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CORAL


Predefined color constants for common web colors.

#define COLOR_CORAL  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CORAL_FLT


Predefined color constants for common web colors.

#define COLOR_CORAL_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CORAL_INT


Predefined color constants for common web colors.

#define COLOR_CORAL_INT 0xFF7F50FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CORNFLOWER_BLUE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CORNFLOWER_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CORNFLOWER_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_CORNFLOWER_BLUE_INT 0x6495EDFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CORNSILK


Predefined color constants for common web colors.

#define COLOR_CORNSILK  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CORNSILK_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CORNSILK_INT


Predefined color constants for common web colors.

#define COLOR_CORNSILK_INT 0xFFF8DCFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CRIMSON


Predefined color constants for common web colors.

#define COLOR_CRIMSON  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CRIMSON_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CRIMSON_INT


Predefined color constants for common web colors.

#define COLOR_CRIMSON_INT 0xDC143CFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CYAN


Predefined color constants for common web colors.

#define COLOR_CYAN  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CYAN_FLT


Predefined color constants for common web colors.

#define COLOR_CYAN_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_CYAN_INT


Predefined color constants for common web colors.

#define COLOR_CYAN_INT 0x00FFFFFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_BLUE


Predefined color constants for common web colors.

#define COLOR_DARK_BLUE  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_DARK_BLUE_INT 0x00008BFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_CYAN


Predefined color constants for common web colors.

#define COLOR_DARK_CYAN  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_CYAN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_CYAN_INT


Predefined color constants for common web colors.

#define COLOR_DARK_CYAN_INT 0x008B8BFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_GOLDENROD


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_GOLDENROD_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_GOLDENROD_INT


Predefined color constants for common web colors.

#define COLOR_DARK_GOLDENROD_INT 0xB8860BFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_GRAY


Predefined color constants for common web colors.

#define COLOR_DARK_GRAY  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_GRAY_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_GRAY_INT


Predefined color constants for common web colors.

#define COLOR_DARK_GRAY_INT 0xA9A9A9FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_GREEN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_GREEN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_GREEN_INT


Predefined color constants for common web colors.

#define COLOR_DARK_GREEN_INT 0x006400FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_KHAKI


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_KHAKI_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_KHAKI_INT


Predefined color constants for common web colors.

#define COLOR_DARK_KHAKI_INT 0xBDB76BFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_MAGENTA


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_MAGENTA_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_MAGENTA_INT


Predefined color constants for common web colors.

#define COLOR_DARK_MAGENTA_INT 0x8B008BFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_OLIVE_GREEN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_OLIVE_GREEN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_OLIVE_GREEN_INT


Predefined color constants for common web colors.

#define COLOR_DARK_OLIVE_GREEN_INT 0x556B2FFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_ORANGE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_ORANGE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_ORANGE_INT


Predefined color constants for common web colors.

#define COLOR_DARK_ORANGE_INT 0xFF8C00FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_ORCHID


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_ORCHID_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_ORCHID_INT


Predefined color constants for common web colors.

#define COLOR_DARK_ORCHID_INT 0x9932CCFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_RED


Predefined color constants for common web colors.

#define COLOR_DARK_RED  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_RED_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_RED_INT


Predefined color constants for common web colors.

#define COLOR_DARK_RED_INT 0x8B0000FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_SALMON


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_SALMON_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_SALMON_INT


Predefined color constants for common web colors.

#define COLOR_DARK_SALMON_INT 0xE9967AFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_SEA_GREEN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_SEA_GREEN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_SEA_GREEN_INT


Predefined color constants for common web colors.

#define COLOR_DARK_SEA_GREEN_INT 0x8FBC8FFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_SLATE_BLUE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_SLATE_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_SLATE_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_DARK_SLATE_BLUE_INT 0x483D8BFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_SLATE_GRAY


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_SLATE_GRAY_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_SLATE_GRAY_INT


Predefined color constants for common web colors.

#define COLOR_DARK_SLATE_GRAY_INT 0x2F4F4FFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_TURQUOISE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_TURQUOISE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_TURQUOISE_INT


Predefined color constants for common web colors.

#define COLOR_DARK_TURQUOISE_INT 0x00CED1FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_VIOLET


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_VIOLET_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DARK_VIOLET_INT


Predefined color constants for common web colors.

#define COLOR_DARK_VIOLET_INT 0x9400D3FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DEEP_PINK


Predefined color constants for common web colors.

#define COLOR_DEEP_PINK  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DEEP_PINK_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DEEP_PINK_INT


Predefined color constants for common web colors.

#define COLOR_DEEP_PINK_INT 0xFF1493FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DEEP_SKY_BLUE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DEEP_SKY_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DEEP_SKY_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_DEEP_SKY_BLUE_INT 0x00BFFFFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DIM_GRAY


Predefined color constants for common web colors.

#define COLOR_DIM_GRAY  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DIM_GRAY_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DIM_GRAY_INT


Predefined color constants for common web colors.

#define COLOR_DIM_GRAY_INT 0x696969FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DODGER_BLUE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DODGER_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_DODGER_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_DODGER_BLUE_INT 0x1E90FFFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_FIREBRICK


Predefined color constants for common web colors.

#define COLOR_FIREBRICK  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_FIREBRICK_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_FIREBRICK_INT


Predefined color constants for common web colors.

#define COLOR_FIREBRICK_INT 0xB22222FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_FLORAL_WHITE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_FLORAL_WHITE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_FLORAL_WHITE_INT


Predefined color constants for common web colors.

#define COLOR_FLORAL_WHITE_INT 0xFFFAF0FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_FOREST_GREEN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_FOREST_GREEN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_FOREST_GREEN_INT


Predefined color constants for common web colors.

#define COLOR_FOREST_GREEN_INT 0x228B22FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_FUCHSIA


Predefined color constants for common web colors.

#define COLOR_FUCHSIA  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_FUCHSIA_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_FUCHSIA_INT


Predefined color constants for common web colors.

#define COLOR_FUCHSIA_INT 0xFF00FFFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GAINSBORO


Predefined color constants for common web colors.

#define COLOR_GAINSBORO  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GAINSBORO_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GAINSBORO_INT


Predefined color constants for common web colors.

#define COLOR_GAINSBORO_INT 0xDCDCDCFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GHOST_WHITE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GHOST_WHITE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GHOST_WHITE_INT


Predefined color constants for common web colors.

#define COLOR_GHOST_WHITE_INT 0xF8F8FFFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GOLD


Predefined color constants for common web colors.

#define COLOR_GOLD  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GOLD_FLT


Predefined color constants for common web colors.

#define COLOR_GOLD_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GOLD_INT


Predefined color constants for common web colors.

#define COLOR_GOLD_INT 0xFFD700FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GOLDENROD


Predefined color constants for common web colors.

#define COLOR_GOLDENROD  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GOLDENROD_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GOLDENROD_INT


Predefined color constants for common web colors.

#define COLOR_GOLDENROD_INT 0xDAA520FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GRAY


Predefined color constants for common web colors.

#define COLOR_GRAY  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GRAY_FLT


Predefined color constants for common web colors.

#define COLOR_GRAY_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GRAY_INT


Predefined color constants for common web colors.

#define COLOR_GRAY_INT 0xBEBEBEFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GREEN


Predefined color constants for common web colors.

#define COLOR_GREEN  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GREEN_FLT


Predefined color constants for common web colors.

#define COLOR_GREEN_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GREEN_INT


Predefined color constants for common web colors.

#define COLOR_GREEN_INT 0x00FF00FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GREEN_YELLOW


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GREEN_YELLOW_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_GREEN_YELLOW_INT


Predefined color constants for common web colors.

#define COLOR_GREEN_YELLOW_INT 0xADFF2FFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_HONEYDEW


Predefined color constants for common web colors.

#define COLOR_HONEYDEW  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_HONEYDEW_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_HONEYDEW_INT


Predefined color constants for common web colors.

#define COLOR_HONEYDEW_INT 0xF0FFF0FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_HOT_PINK


Predefined color constants for common web colors.

#define COLOR_HOT_PINK  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_HOT_PINK_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_HOT_PINK_INT


Predefined color constants for common web colors.

#define COLOR_HOT_PINK_INT 0xFF69B4FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_INDIAN_RED


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_INDIAN_RED_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_INDIAN_RED_INT


Predefined color constants for common web colors.

#define COLOR_INDIAN_RED_INT 0xCD5C5CFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_INDIGO


Predefined color constants for common web colors.

#define COLOR_INDIGO  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_INDIGO_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_INDIGO_INT


Predefined color constants for common web colors.

#define COLOR_INDIGO_INT 0x4B0082FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_IVORY


Predefined color constants for common web colors.

#define COLOR_IVORY  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_IVORY_FLT


Predefined color constants for common web colors.

#define COLOR_IVORY_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_IVORY_INT


Predefined color constants for common web colors.

#define COLOR_IVORY_INT 0xFFFFF0FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_KHAKI


Predefined color constants for common web colors.

#define COLOR_KHAKI  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_KHAKI_FLT


Predefined color constants for common web colors.

#define COLOR_KHAKI_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_KHAKI_INT


Predefined color constants for common web colors.

#define COLOR_KHAKI_INT 0xF0E68CFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LAVENDER


Predefined color constants for common web colors.

#define COLOR_LAVENDER  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LAVENDER_BLUSH


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LAVENDER_BLUSH_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LAVENDER_BLUSH_INT


Predefined color constants for common web colors.

#define COLOR_LAVENDER_BLUSH_INT 0xFFF0F5FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LAVENDER_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LAVENDER_INT


Predefined color constants for common web colors.

#define COLOR_LAVENDER_INT 0xE6E6FAFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LAWN_GREEN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LAWN_GREEN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LAWN_GREEN_INT


Predefined color constants for common web colors.

#define COLOR_LAWN_GREEN_INT 0x7CFC00FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LEMON_CHIFFON


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LEMON_CHIFFON_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LEMON_CHIFFON_INT


Predefined color constants for common web colors.

#define COLOR_LEMON_CHIFFON_INT 0xFFFACDFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_BLUE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_LIGHT_BLUE_INT 0xADD8E6FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_CORAL


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_CORAL_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_CORAL_INT


Predefined color constants for common web colors.

#define COLOR_LIGHT_CORAL_INT 0xF08080FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_CYAN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_CYAN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_CYAN_INT


Predefined color constants for common web colors.

#define COLOR_LIGHT_CYAN_INT 0xE0FFFFFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_GOLDENROD


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_GOLDENROD_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_GOLDENROD_INT


Predefined color constants for common web colors.

#define COLOR_LIGHT_GOLDENROD_INT 0xFAFAD2FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_GRAY


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_GRAY_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_GRAY_INT


Predefined color constants for common web colors.

#define COLOR_LIGHT_GRAY_INT 0xD3D3D3FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_GREEN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_GREEN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_GREEN_INT


Predefined color constants for common web colors.

#define COLOR_LIGHT_GREEN_INT 0x90EE90FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_PINK


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_PINK_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_PINK_INT


Predefined color constants for common web colors.

#define COLOR_LIGHT_PINK_INT 0xFFB6C1FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_SALMON


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_SALMON_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_SALMON_INT


Predefined color constants for common web colors.

#define COLOR_LIGHT_SALMON_INT 0xFFA07AFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_SEA_GREEN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_SEA_GREEN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_SEA_GREEN_INT


Predefined color constants for common web colors.

#define COLOR_LIGHT_SEA_GREEN_INT 0x20B2AAFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_SKY_BLUE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_SKY_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_SKY_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_LIGHT_SKY_BLUE_INT 0x87CEFAFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_SLATE_GRAY


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_SLATE_GRAY_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_SLATE_GRAY_INT


Predefined color constants for common web colors.

#define COLOR_LIGHT_SLATE_GRAY_INT 0x778899FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_STEEL_BLUE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_STEEL_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_STEEL_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_LIGHT_STEEL_BLUE_INT 0xB0C4DEFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_YELLOW


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_YELLOW_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIGHT_YELLOW_INT


Predefined color constants for common web colors.

#define COLOR_LIGHT_YELLOW_INT 0xFFFFE0FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIME


Predefined color constants for common web colors.

#define COLOR_LIME  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIME_FLT


Predefined color constants for common web colors.

#define COLOR_LIME_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIME_GREEN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIME_GREEN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIME_GREEN_INT


Predefined color constants for common web colors.

#define COLOR_LIME_GREEN_INT 0x32CD32FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LIME_INT


Predefined color constants for common web colors.

#define COLOR_LIME_INT 0x00FF00FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LINEN


Predefined color constants for common web colors.

#define COLOR_LINEN  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LINEN_FLT


Predefined color constants for common web colors.

#define COLOR_LINEN_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_LINEN_INT


Predefined color constants for common web colors.

#define COLOR_LINEN_INT 0xFAF0E6FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MAGENTA


Predefined color constants for common web colors.

#define COLOR_MAGENTA  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MAGENTA_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MAGENTA_INT


Predefined color constants for common web colors.

#define COLOR_MAGENTA_INT 0xFF00FFFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MAROON


Predefined color constants for common web colors.

#define COLOR_MAROON  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MAROON_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MAROON_INT


Predefined color constants for common web colors.

#define COLOR_MAROON_INT 0xB03060FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_AQUAMARINE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_AQUAMARINE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_AQUAMARINE_INT


Predefined color constants for common web colors.

#define COLOR_MEDIUM_AQUAMARINE_INT 0x66CDAAFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_BLUE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_MEDIUM_BLUE_INT 0x0000CDFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_ORCHID


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_ORCHID_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_ORCHID_INT


Predefined color constants for common web colors.

#define COLOR_MEDIUM_ORCHID_INT 0xBA55D3FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_PURPLE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_PURPLE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_PURPLE_INT


Predefined color constants for common web colors.

#define COLOR_MEDIUM_PURPLE_INT 0x9370DBFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_SEA_GREEN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_SEA_GREEN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_SEA_GREEN_INT


Predefined color constants for common web colors.

#define COLOR_MEDIUM_SEA_GREEN_INT 0x3CB371FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_SLATE_BLUE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_SLATE_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_SLATE_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_MEDIUM_SLATE_BLUE_INT 0x7B68EEFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_SPRING_GREEN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_SPRING_GREEN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_SPRING_GREEN_INT


Predefined color constants for common web colors.

#define COLOR_MEDIUM_SPRING_GREEN_INT 0x00FA9AFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_TURQUOISE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_TURQUOISE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_TURQUOISE_INT


Predefined color constants for common web colors.

#define COLOR_MEDIUM_TURQUOISE_INT 0x48D1CCFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_VIOLET_RED


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_VIOLET_RED_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MEDIUM_VIOLET_RED_INT


Predefined color constants for common web colors.

#define COLOR_MEDIUM_VIOLET_RED_INT 0xC71585FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MIDNIGHT_BLUE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MIDNIGHT_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MIDNIGHT_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_MIDNIGHT_BLUE_INT 0x191970FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MINT_CREAM


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MINT_CREAM_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MINT_CREAM_INT


Predefined color constants for common web colors.

#define COLOR_MINT_CREAM_INT 0xF5FFFAFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MISTY_ROSE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MISTY_ROSE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MISTY_ROSE_INT


Predefined color constants for common web colors.

#define COLOR_MISTY_ROSE_INT 0xFFE4E1FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MOCCASIN


Predefined color constants for common web colors.

#define COLOR_MOCCASIN  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MOCCASIN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_MOCCASIN_INT


Predefined color constants for common web colors.

#define COLOR_MOCCASIN_INT 0xFFE4B5FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_NAVAJO_WHITE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_NAVAJO_WHITE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_NAVAJO_WHITE_INT


Predefined color constants for common web colors.

#define COLOR_NAVAJO_WHITE_INT 0xFFDEADFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_NAVY_BLUE


Predefined color constants for common web colors.

#define COLOR_NAVY_BLUE  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_NAVY_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_NAVY_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_NAVY_BLUE_INT 0x000080FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_OLD_LACE


Predefined color constants for common web colors.

#define COLOR_OLD_LACE  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_OLD_LACE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_OLD_LACE_INT


Predefined color constants for common web colors.

#define COLOR_OLD_LACE_INT 0xFDF5E6FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_OLIVE


Predefined color constants for common web colors.

#define COLOR_OLIVE  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_OLIVE_DRAB


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_OLIVE_DRAB_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_OLIVE_DRAB_INT


Predefined color constants for common web colors.

#define COLOR_OLIVE_DRAB_INT 0x6B8E23FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_OLIVE_FLT


Predefined color constants for common web colors.

#define COLOR_OLIVE_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_OLIVE_INT


Predefined color constants for common web colors.

#define COLOR_OLIVE_INT 0x808000FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ORANGE


Predefined color constants for common web colors.

#define COLOR_ORANGE  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ORANGE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ORANGE_INT


Predefined color constants for common web colors.

#define COLOR_ORANGE_INT 0xFFA500FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ORANGE_RED


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ORANGE_RED_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ORANGE_RED_INT


Predefined color constants for common web colors.

#define COLOR_ORANGE_RED_INT 0xFF4500FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ORCHID


Predefined color constants for common web colors.

#define COLOR_ORCHID  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ORCHID_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ORCHID_INT


Predefined color constants for common web colors.

#define COLOR_ORCHID_INT 0xDA70D6FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PALE_GOLDENROD


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PALE_GOLDENROD_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PALE_GOLDENROD_INT


Predefined color constants for common web colors.

#define COLOR_PALE_GOLDENROD_INT 0xEEE8AAFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PALE_GREEN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PALE_GREEN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PALE_GREEN_INT


Predefined color constants for common web colors.

#define COLOR_PALE_GREEN_INT 0x98FB98FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PALE_TURQUOISE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PALE_TURQUOISE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PALE_TURQUOISE_INT


Predefined color constants for common web colors.

#define COLOR_PALE_TURQUOISE_INT 0xAFEEEEFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PALE_VIOLET_RED


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PALE_VIOLET_RED_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PALE_VIOLET_RED_INT


Predefined color constants for common web colors.

#define COLOR_PALE_VIOLET_RED_INT 0xDB7093FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PAPAYA_WHIP


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PAPAYA_WHIP_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PAPAYA_WHIP_INT


Predefined color constants for common web colors.

#define COLOR_PAPAYA_WHIP_INT 0xFFEFD5FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PEACH_PUFF


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PEACH_PUFF_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PEACH_PUFF_INT


Predefined color constants for common web colors.

#define COLOR_PEACH_PUFF_INT 0xFFDAB9FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PERU


Predefined color constants for common web colors.

#define COLOR_PERU  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PERU_FLT


Predefined color constants for common web colors.

#define COLOR_PERU_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PERU_INT


Predefined color constants for common web colors.

#define COLOR_PERU_INT 0xCD853FFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PINK


Predefined color constants for common web colors.

#define COLOR_PINK  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PINK_FLT


Predefined color constants for common web colors.

#define COLOR_PINK_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PINK_INT


Predefined color constants for common web colors.

#define COLOR_PINK_INT 0xFFC0CBFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PLUM


Predefined color constants for common web colors.

#define COLOR_PLUM  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PLUM_FLT


Predefined color constants for common web colors.

#define COLOR_PLUM_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PLUM_INT


Predefined color constants for common web colors.

#define COLOR_PLUM_INT 0xDDA0DDFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_POWDER_BLUE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_POWDER_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_POWDER_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_POWDER_BLUE_INT 0xB0E0E6FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PURPLE


Predefined color constants for common web colors.

#define COLOR_PURPLE  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PURPLE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_PURPLE_INT


Predefined color constants for common web colors.

#define COLOR_PURPLE_INT 0xA020F0FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_REBECCA_PURPLE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_REBECCA_PURPLE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_REBECCA_PURPLE_INT


Predefined color constants for common web colors.

#define COLOR_REBECCA_PURPLE_INT 0x663399FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_RED


Predefined color constants for common web colors.

#define COLOR_RED  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_RED_FLT


Predefined color constants for common web colors.

#define COLOR_RED_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_RED_INT


Predefined color constants for common web colors.

#define COLOR_RED_INT 0xFF0000FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ROSY_BROWN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ROSY_BROWN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ROSY_BROWN_INT


Predefined color constants for common web colors.

#define COLOR_ROSY_BROWN_INT 0xBC8F8FFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ROYAL_BLUE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ROYAL_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_ROYAL_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_ROYAL_BLUE_INT 0x4169E1FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SADDLE_BROWN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SADDLE_BROWN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SADDLE_BROWN_INT


Predefined color constants for common web colors.

#define COLOR_SADDLE_BROWN_INT 0x8B4513FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SALMON


Predefined color constants for common web colors.

#define COLOR_SALMON  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SALMON_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SALMON_INT


Predefined color constants for common web colors.

#define COLOR_SALMON_INT 0xFA8072FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SANDY_BROWN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SANDY_BROWN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SANDY_BROWN_INT


Predefined color constants for common web colors.

#define COLOR_SANDY_BROWN_INT 0xF4A460FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SEA_GREEN


Predefined color constants for common web colors.

#define COLOR_SEA_GREEN  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SEA_GREEN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SEA_GREEN_INT


Predefined color constants for common web colors.

#define COLOR_SEA_GREEN_INT 0x2E8B57FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SEASHELL


Predefined color constants for common web colors.

#define COLOR_SEASHELL  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SEASHELL_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SEASHELL_INT


Predefined color constants for common web colors.

#define COLOR_SEASHELL_INT 0xFFF5EEFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SIENNA


Predefined color constants for common web colors.

#define COLOR_SIENNA  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SIENNA_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SIENNA_INT


Predefined color constants for common web colors.

#define COLOR_SIENNA_INT 0xA0522DFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SILVER


Predefined color constants for common web colors.

#define COLOR_SILVER  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SILVER_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SILVER_INT


Predefined color constants for common web colors.

#define COLOR_SILVER_INT 0xC0C0C0FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SKY_BLUE


Predefined color constants for common web colors.

#define COLOR_SKY_BLUE  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SKY_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SKY_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_SKY_BLUE_INT 0x87CEEBFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SLATE_BLUE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SLATE_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SLATE_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_SLATE_BLUE_INT 0x6A5ACDFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SLATE_GRAY


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SLATE_GRAY_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SLATE_GRAY_INT


Predefined color constants for common web colors.

#define COLOR_SLATE_GRAY_INT 0x708090FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SNOW


Predefined color constants for common web colors.

#define COLOR_SNOW  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SNOW_FLT


Predefined color constants for common web colors.

#define COLOR_SNOW_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SNOW_INT


Predefined color constants for common web colors.

#define COLOR_SNOW_INT 0xFFFAFAFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SPRING_GREEN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SPRING_GREEN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_SPRING_GREEN_INT


Predefined color constants for common web colors.

#define COLOR_SPRING_GREEN_INT 0x00FF7FFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_STEEL_BLUE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_STEEL_BLUE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_STEEL_BLUE_INT


Predefined color constants for common web colors.

#define COLOR_STEEL_BLUE_INT 0x4682B4FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_TAN


Predefined color constants for common web colors.

#define COLOR_TAN  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_TAN_FLT


Predefined color constants for common web colors.

#define COLOR_TAN_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_TAN_INT


Predefined color constants for common web colors.

#define COLOR_TAN_INT 0xD2B48CFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_TEAL


Predefined color constants for common web colors.

#define COLOR_TEAL  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_TEAL_FLT


Predefined color constants for common web colors.

#define COLOR_TEAL_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_TEAL_INT


Predefined color constants for common web colors.

#define COLOR_TEAL_INT 0x008080FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_THISTLE


Predefined color constants for common web colors.

#define COLOR_THISTLE  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_THISTLE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_THISTLE_INT


Predefined color constants for common web colors.

#define COLOR_THISTLE_INT 0xD8BFD8FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_TOMATO


Predefined color constants for common web colors.

#define COLOR_TOMATO  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_TOMATO_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_TOMATO_INT


Predefined color constants for common web colors.

#define COLOR_TOMATO_INT 0xFF6347FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_TRANSPARENT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_TRANSPARENT_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_TRANSPARENT_INT


Predefined color constants for common web colors.

#define COLOR_TRANSPARENT_INT 0x00000000 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_TURQUOISE


Predefined color constants for common web colors.

#define COLOR_TURQUOISE  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_TURQUOISE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_TURQUOISE_INT


Predefined color constants for common web colors.

#define COLOR_TURQUOISE_INT 0x40E0D0FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_VIOLET


Predefined color constants for common web colors.

#define COLOR_VIOLET  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_VIOLET_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_VIOLET_INT


Predefined color constants for common web colors.

#define COLOR_VIOLET_INT 0xEE82EEFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WEB_GRAY


Predefined color constants for common web colors.

#define COLOR_WEB_GRAY  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WEB_GRAY_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WEB_GRAY_INT


Predefined color constants for common web colors.

#define COLOR_WEB_GRAY_INT 0x808080FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WEB_GREEN


Predefined color constants for common web colors.

#define COLOR_WEB_GREEN  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WEB_GREEN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WEB_GREEN_INT


Predefined color constants for common web colors.

#define COLOR_WEB_GREEN_INT 0x008000FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WEB_MAROON


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WEB_MAROON_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WEB_MAROON_INT


Predefined color constants for common web colors.

#define COLOR_WEB_MAROON_INT 0x800000FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WEB_PURPLE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WEB_PURPLE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WEB_PURPLE_INT


Predefined color constants for common web colors.

#define COLOR_WEB_PURPLE_INT 0x800080FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WHEAT


Predefined color constants for common web colors.

#define COLOR_WHEAT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WHEAT_FLT


Predefined color constants for common web colors.

#define COLOR_WHEAT_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WHEAT_INT


Predefined color constants for common web colors.

#define COLOR_WHEAT_INT 0xF5DEB3FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WHITE


Predefined color constants for common web colors.

#define COLOR_WHITE  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WHITE_FLT


Predefined color constants for common web colors.

#define COLOR_WHITE_FLT  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WHITE_INT


Predefined color constants for common web colors.

#define COLOR_WHITE_INT 0xFFFFFFFF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WHITE_SMOKE


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WHITE_SMOKE_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_WHITE_SMOKE_INT


Predefined color constants for common web colors.

#define COLOR_WHITE_SMOKE_INT 0xF5F5F5FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_YELLOW


Predefined color constants for common web colors.

#define COLOR_YELLOW  
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_YELLOW_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_YELLOW_GREEN


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_YELLOW_GREEN_FLT


Predefined color constants for common web colors.

Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_YELLOW_GREEN_INT


Predefined color constants for common web colors.

#define COLOR_YELLOW_GREEN_INT 0x9ACD32FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also


COLOR_YELLOW_INT


Predefined color constants for common web colors.

#define COLOR_YELLOW_INT 0xFFFF00FF 
Discussion

When NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance

All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted.

See Also