paul_color.h
IntroductionColor manipulation library for C/C++. DiscussionImplementation is included when PAUL_COLOR_IMPLEMENTATION or PAUL_IMPLEMENTATION is defined.
Functions
cmykCreates a color from CMYK components. ParametersReturn ValueA color_t value representing the specified CMYK color. DiscussionThis 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_rgbaConverts CMYK color space to RGBA. color_t cmyk_to_rgba( color_cmyk_t cmyk); ParametersReturn ValueA color_t value representing the equivalent RGBA color. DiscussionThis function converts CMYK color space back to RGBA. color_achromatopsiaSimulates achromatopsia (complete color blindness). color_t color_achromatopsia( color_t color); // Complete color blindness ParametersReturn ValueThe color as seen by someone with achromatopsia. DiscussionThis 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_blacksAdjusts very dark areas of a color. color_t color_adjust_blacks( color_t color, float amount); ParametersReturn ValueThe color with adjusted blacks. DiscussionThis function selectively adjusts pixels with luminance below 20%, affecting only the darkest parts of the image. color_adjust_brightnessAdjusts the brightness of a color. color_t color_adjust_brightness( color_t color, float amount); ParametersReturn ValueThe color with adjusted brightness. DiscussionThis function adds the specified amount to each RGB channel, effectively making the color lighter (positive values) or darker (negative values). color_adjust_clarityEnhances local contrast (clarity/structure). color_t color_adjust_clarity( color_t color, float amount); ParametersReturn ValueThe color with enhanced clarity. DiscussionThis function boosts contrast in mid-tone areas, simulating the clarity/structure adjustment found in photo editing software. color_adjust_contrastAdjusts the contrast of a color. color_t color_adjust_contrast( color_t color, float amount); ParametersReturn ValueThe color with adjusted contrast. DiscussionThis 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_exposureAdjusts the exposure of a color in stops. color_t color_adjust_exposure( color_t color, float stops); ParametersReturn ValueThe color with adjusted exposure. DiscussionThis function multiplies RGB values by 2^stops, simulating camera exposure changes. Each stop doubles or halves the brightness. color_adjust_gammaApplies gamma correction to a color. color_t color_adjust_gamma( color_t color, float gamma); ParametersReturn ValueThe color with gamma correction applied. DiscussionThis 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_highlightsAdjusts highlight areas of a color. color_t color_adjust_highlights( color_t color, float amount); ParametersReturn ValueThe color with adjusted highlights. DiscussionThis function selectively adjusts pixels with luminance above 50%, making bright areas brighter (positive values) or darker (negative values). color_adjust_shadowsAdjusts shadow areas of a color. color_t color_adjust_shadows( color_t color, float amount); ParametersReturn ValueThe color with adjusted shadows. DiscussionThis function selectively adjusts pixels with luminance below 50%, making dark areas brighter (positive values) or darker (negative values). color_adjust_temperatureAdjusts the color temperature of a color. color_t color_adjust_temperature( color_t color, float kelvin); ParametersReturn ValueThe color with adjusted temperature. DiscussionThis function simulates color temperature changes by blending the color with the RGB equivalent of the specified blackbody temperature. color_adjust_vibranceApplies smart saturation adjustment. color_t color_adjust_vibrance( color_t color, float amount); ParametersReturn ValueThe color with adjusted vibrance. DiscussionThis function intelligently adjusts saturation, applying more effect to less saturated colors while protecting skin tones and already vivid colors. color_adjust_whitesAdjusts very bright areas of a color. color_t color_adjust_whites( color_t color, float amount); ParametersReturn ValueThe color with adjusted whites. DiscussionThis function selectively adjusts pixels with luminance above 80%, affecting only the brightest parts of the image. color_adobe_rgb_to_srgbConverts Adobe RGB color space to sRGB. color_t color_adobe_rgb_to_srgb( color_t color); // Print/web ParametersReturn ValueThe color converted to sRGB color space. DiscussionThis 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_blendPerforms standard alpha blending (Porter-Duff "over" operation). color_t color_alpha_blend( color_t fg, color_t bg); ParametersReturn ValueThe alpha-blended result. DiscussionThis function composites the foreground color over the background color using standard alpha blending equations, properly handling premultiplied alpha. color_analogousGenerates analogous colors (adjacent hues on the color wheel). void color_analogous( color_t base, color_t *colors, int count); // Adjacent hues ParametersDiscussionThis 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_brightnessCalculates the simple average brightness of a color. float color_brightness( color_t color); ParametersReturn ValueThe average brightness value (0.0-1.0). DiscussionThis 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_cmpCompares two colors for exact equality. ParametersReturn Valuetrue if all RGBA components are identical, false otherwise. DiscussionThis function performs a bitwise comparison of all color components including alpha. It returns true only if both colors are exactly identical. color_color_balanceApplies color balance adjustment to a color. color_t color_color_balance( color_t color, float cyan_red, float magenta_green, float yellow_blue); ParametersReturn ValueThe color with color balance adjustment applied. DiscussionThis 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_burnApplies color burn blending mode. color_t color_color_burn( color_t a, color_t b); ParametersReturn ValueThe blended color result. DiscussionThis 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_dodgeApplies color dodge blending mode. color_t color_color_dodge( color_t a, color_t b); ParametersReturn ValueThe blended color result. DiscussionThis 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_complementGets the complementary color (opposite hue). color_t color_complement( color_t color); ParametersReturn ValueThe complementary color. DiscussionThis function shifts the hue by 180° in HSV color space to find the complementary color, which provides maximum contrast. color_contrast_ratioCalculates the WCAG contrast ratio between two colors. float color_contrast_ratio( color_t a, color_t b); // WCAG contrast ratio ParametersReturn ValueThe contrast ratio (1.0 to 21.0+). DiscussionThis 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_curvesApplies curves adjustment to a color using lookup tables. color_t color_curves( color_t color, float *curve_r, float *curve_g, float *curve_b); ParametersReturn ValueThe color with curves adjustment applied. DiscussionThis 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_darkenSelects the darker of two colors for each channel. color_t color_darken( color_t a, color_t b); ParametersReturn ValueColor with minimum values from each channel. DiscussionThis function compares corresponding channels and selects the darker (lower) value for each. Alpha is blended using standard alpha blending rules. color_delta_e_2000Calculates 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 ParametersReturn ValueThe color difference value using CIEDE2000 weighting (Delta E CIEDE2000). DiscussionThis 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_76Calculates 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 ParametersReturn ValueThe Euclidean distance in CIELAB space (Delta E CIE76). DiscussionThis 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_94Calculates 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 ParametersReturn ValueThe color difference value using CIE94 weighting (Delta E CIE94). DiscussionThis 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_desaturateDecreases the saturation of a color. color_t color_desaturate( color_t color, float amount); ParametersReturn ValueThe color with reduced saturation. DiscussionThis function scales down the saturation component in HSV color space, moving colors toward grayscale. color_deuteranopiaSimulates deuteranopia (green-blind) color vision deficiency. color_t color_deuteranopia( color_t color); // Green-blind ParametersReturn ValueThe color as seen by someone with deuteranopia. DiscussionThis 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_differenceCalculates the absolute difference between two colors. color_t color_difference( color_t a, color_t b); ParametersReturn ValueColor representing the absolute difference. DiscussionThis function subtracts the darker color from the lighter color for each channel, creating high-contrast results often used for special effects. color_distanceCalculates the Euclidean distance between two colors in RGB space. float color_distance( color_t a, color_t b); ParametersReturn ValueThe Euclidean distance in RGB space. DiscussionThis 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_labCalculates the Euclidean distance between two colors in CIELAB color space. float color_distance_lab( color_lab_t a, color_lab_t b); ParametersReturn ValueThe Euclidean distance in LAB space (Delta E CIE76). DiscussionThis 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_steinbergApplies 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); ParametersReturn ValueThe dithered color from the palette. DiscussionThis 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_orderedApplies 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); ParametersReturn ValueThe dithered color from the palette. DiscussionThis 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_channelDetermines the dominant color channel. int color_dominant_channel( color_t color); ParametersReturn Value0 for red-dominant, 1 for green-dominant, 2 for blue-dominant. DiscussionThis function compares RGB channel values to determine which color channel has the highest intensity. color_energyCalculates the total energy of a color. float color_energy( color_t color); ParametersReturn ValueColor energy value (0.0-1.0). DiscussionThis function computes the average of all RGB channels, representing the overall intensity of the color. color_exclusionApplies exclusion blending mode. color_t color_exclusion( color_t a, color_t b); ParametersReturn ValueThe blended color result. DiscussionThis 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_grayscaleConverts a color to grayscale using fast integer-only arithmetic. color_t color_fast_grayscale( color_t color); // Integer-only grayscale ParametersReturn ValueThe grayscale version of the input color. DiscussionThis 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_invertInverts RGB channels using fast bitwise operations. color_t color_fast_invert( color_t color); // Bitwise invert ParametersReturn ValueThe inverted version of the input color. DiscussionThis 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_sepiaApplies a sepia tone effect using fast integer arithmetic. color_t color_fast_sepia( color_t color); // Fast sepia tone ParametersReturn ValueThe sepia-toned version of the input color. DiscussionThis 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_gradientGenerates a linear gradient between two colors. void color_gradient( color_t start, color_t end, color_t *colors, int count); // 1D gradient ParametersDiscussionThis 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_grayscaleConverts a color to grayscale. color_t color_grayscale( color_t color); ParametersReturn ValueA grayscale version of the input color. DiscussionThis function converts the color to grayscale using perceptual luminance coefficients, preserving the alpha channel. color_hard_lightApplies hard light blending mode. color_t color_hard_light( color_t a, color_t b); ParametersReturn ValueThe blended color result. DiscussionThis 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_hueGets the hue of a color in degrees. ParametersReturn ValueThe hue angle in degrees (0.0-360.0). DiscussionThis 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_shiftShifts the hue of a color by a specified number of degrees. color_t color_hue_shift( color_t color, float degrees); ParametersReturn ValueThe color with shifted hue. DiscussionThis function rotates the hue component in HSV color space by the specified number of degrees, cycling through the color wheel. color_invertInverts the RGB channels of a color. color_t color_invert( color_t color); ParametersReturn ValueThe color with inverted RGB values. DiscussionThis function inverts each RGB channel (255 - value) while preserving the alpha channel. This creates the photographic negative of the color. color_is_coolDetermines if a color is cool (bluish/greenish). int color_is_cool( color_t color); ParametersReturn Value1 if cool, 0 if warm. DiscussionThis function considers a color cool if blue dominates and the blue+green sum is significantly higher than red. color_is_darkDetermines if a color is considered dark. int color_is_dark( color_t color); ParametersReturn Value1 if the color is dark (luminance < 0.5), 0 if light. DiscussionThis function uses perceptual luminance to determine if a color appears dark. Colors with luminance below 0.5 are considered dark. color_is_grayscaleChecks if a color is effectively grayscale. int color_is_grayscale( color_t color); ParametersReturn Value1 if the color is grayscale, 0 otherwise. DiscussionThis function checks if all RGB channels are within 2 units of each other, indicating the color has no significant hue. color_is_similarChecks if two colors are similar within a threshold. int color_is_similar( color_t a, color_t b, float threshold); ParametersReturn Value1 if colors are similar within the threshold, 0 otherwise. DiscussionThis 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_warmDetermines if a color is warm (reddish/yellowish). int color_is_warm( color_t color); ParametersReturn Value1 if warm, 0 if cool. DiscussionThis function considers a color warm if red dominates and the red+green sum is significantly higher than blue. color_lerpLinearly interpolates between two colors. color_t color_lerp( color_t a, color_t b, float t); ParametersReturn ValueThe interpolated color. DiscussionThis 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_levelsApplies 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); ParametersReturn ValueThe color with levels adjustment applied. DiscussionThis 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_gainApplies lift-gamma-gain color grading to a color. color_t color_lift_gamma_gain( color_t color, color_rgbaf_t lift, color_rgbaf_t gamma, color_rgbaf_t gain); ParametersReturn ValueThe color graded result. DiscussionThis 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_lightenSelects the lighter of two colors for each channel. color_t color_lighten( color_t a, color_t b); ParametersReturn ValueColor with maximum values from each channel. DiscussionThis function compares corresponding channels and selects the lighter (higher) value for each. Alpha is blended using standard alpha blending rules. color_luminanceCalculates the perceptual luminance of a color. float color_luminance( color_t color); ParametersReturn ValueThe luminance value (0.0-1.0) using sRGB perceptual coefficients. DiscussionThis 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_closestFinds the closest color in a palette to the target color. color_t color_match_closest( color_t target, color_t *palette, int palette_size); ParametersReturn ValueThe closest matching color from the palette. DiscussionThis 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_monochromaticGenerates monochromatic colors (same hue, varying saturation/value). void color_monochromatic( color_t base, color_t *colors, int count); // Same hue, different lightness ParametersDiscussionThis function creates colors with the same hue as the base color but varying saturation and brightness levels. Monochromatic schemes are elegant and sophisticated. color_multiplyMultiplies two colors together. color_t color_multiply( color_t a, color_t b); ParametersReturn ValueThe blended color result. DiscussionThis function multiplies the RGB channels of the two colors, creating a darker result. Multiply mode is commonly used for shadows and darkening effects. color_overlayApplies overlay blending mode. color_t color_overlay( color_t a, color_t b); ParametersReturn ValueThe blended color result. DiscussionThis 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_posterizeApplies posterization effect by reducing the number of tonal levels. color_t color_posterize( color_t color, int levels); ParametersReturn ValueThe posterized color. DiscussionThis 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_alphaPremultiplies RGB channels by alpha. color_t color_premultiply_alpha( color_t color); ParametersReturn ValueColor with RGB channels premultiplied by alpha. DiscussionThis function multiplies each RGB channel by the alpha value, preparing the color for use in blending operations that expect premultiplied alpha. color_prophoto_to_srgbConverts ProPhoto RGB color space to sRGB. color_t color_prophoto_to_srgb( color_t color); // Photography ParametersReturn ValueThe color converted to sRGB color space. DiscussionThis 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_protanopiaSimulates protanopia (red-blind) color vision deficiency. color_t color_protanopia( color_t color); // Red-blind ParametersReturn ValueThe color as seen by someone with protanopia. DiscussionThis 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_purityCalculates the color purity (saturation). float color_purity( color_t color); ParametersReturn ValueColor purity value (0.0-1.0). DiscussionThis function measures how far the color is from the grayscale axis in RGB space, indicating color intensity or vividness. color_quantizeQuantizes a color to reduce the number of bits per channel. color_t color_quantize( color_t color, int bits_per_channel); ParametersReturn ValueThe quantized color. DiscussionThis 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_rec2020Converts Rec.709 (standard HD) color space to Rec.2020 (ultra HD/HDR). color_t color_rec709_to_rec2020( color_t color); // HDR conversion ParametersReturn ValueThe color converted to Rec.2020 color space. DiscussionThis 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_luminanceCalculates the relative luminance for WCAG accessibility compliance. float color_relative_luminance( color_t color); ParametersReturn ValueThe relative luminance value (0.0-1.0) with gamma correction applied. DiscussionThis 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_saturateIncreases the saturation of a color. color_t color_saturate( color_t color, float amount); ParametersReturn ValueThe color with increased saturation. DiscussionThis function multiplies the saturation component in HSV color space by the specified amount, making colors more vivid. color_saturationGets the saturation level of a color. float color_saturation( color_t color); ParametersReturn ValueThe saturation value (0.0-1.0) in HSV color space. DiscussionThis function converts the color to HSV space and returns the saturation component, which represents color purity or intensity. color_screenScreens two colors together. color_t color_screen( color_t a, color_t b); ParametersReturn ValueThe blended color result. DiscussionThis 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_colorApplies 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
Return ValueThe color with selective color adjustment applied. DiscussionThis 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_highlightAdjusts shadow and highlight regions of a color. color_t color_shadow_highlight( color_t color, float shadow, float highlight); ParametersReturn ValueThe color with shadow/highlight adjustment applied. DiscussionThis 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_highlightApplies shadow-midtone-highlight color grading using luminance-based weighting. color_t color_shadow_midtone_highlight( color_t color, color_rgbaf_t shadow, color_rgbaf_t midtone, color_rgbaf_t highlight); ParametersReturn ValueThe color graded result. DiscussionThis 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_similarityCalculates the similarity between two colors (0.0-1.0). float color_similarity( color_t a, color_t b); ParametersReturn ValueSimilarity value where 1.0 means identical, 0.0 means completely different. DiscussionThis 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_lightApplies soft light blending mode. color_t color_soft_light( color_t a, color_t b); ParametersReturn ValueThe blended color result. DiscussionThis 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_complementaryGenerates split-complementary colors. void color_split_complementary( color_t base, color_t *color1, color_t *color2); // Split complement ParametersDiscussionThis function creates colors using the base color and two colors adjacent to its complement. This scheme provides high contrast while maintaining harmony. color_temperature_estimateEstimates the color temperature in Kelvin. float color_temperature_estimate( color_t color); ParametersReturn ValueEstimated color temperature (1000K-10000K). DiscussionThis function provides a rough approximation of color temperature based on the blue-to-red ratio, where higher blue content indicates cooler (higher) temperatures. color_tetradicGenerates 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 ParametersDiscussionThis 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_tintApplies a tint adjustment to a color. color_t color_tint( color_t color, float amount); ParametersReturn ValueThe color with applied tint. DiscussionThis function adjusts the magenta-green balance, adding magenta (positive values) or green (negative values) to the color. color_triadicGenerates triadic colors (120° apart on the color wheel). void color_triadic( color_t base, color_t *color1, color_t *color2); // 120° apart ParametersDiscussionThis 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_tritanopiaSimulates tritanopia (blue-blind) color vision deficiency. color_t color_tritanopia( color_t color); // Blue-blind ParametersReturn ValueThe color as seen by someone with tritanopia. DiscussionThis 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_alphaUnpremultiplies RGB channels by alpha. color_t color_unpremultiply_alpha( color_t color); ParametersReturn ValueColor with RGB channels unpremultiplied by alpha. DiscussionThis function divides each RGB channel by the alpha value, converting from premultiplied alpha format back to straight alpha format. color_vibranceApplies vibrance adjustment (smart saturation) to a color. color_t color_vibrance( color_t color, float amount); // Smart saturation ParametersReturn ValueThe color with vibrance adjustment applied. DiscussionThis 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_compliantChecks if two colors meet WCAG AA contrast requirements. int color_wcag_aa_compliant( color_t fg, color_t bg); // AA compliance ParametersReturn Value1 if compliant with WCAG AA standards, 0 otherwise. DiscussionThis 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_compliantChecks if two colors meet WCAG AAA contrast requirements. int color_wcag_aaa_compliant( color_t fg, color_t bg); // AAA compliance ParametersReturn Value1 if compliant with WCAG AAA standards, 0 otherwise. DiscussionThis 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. hslCreates an opaque color from HSL components. ParametersReturn ValueA color_t value representing the specified HSL color with full opacity. DiscussionThis 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). hslaCreates a color from HSLA components. ParametersReturn ValueA color_t value representing the specified HSLA color. DiscussionThis 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_rgbaConverts HSLA color space to RGBA. color_t hsla_to_rgba( color_hsla_t hsla); ParametersReturn ValueA color_t value representing the equivalent RGBA color. DiscussionThis function converts HSL color space back to RGBA using the standard HSL to RGB conversion algorithm. hsla_to_rgbafConverts HSLA color space to floating-point RGBA. color_rgbaf_t hsla_to_rgbaf( color_hsla_t hsla); ParametersReturn ValueA color_rgbaf_t structure with normalized RGBA components. DiscussionThis function converts HSL color space to normalized RGBA, providing higher precision than the 8-bit version. hsvCreates an opaque color from HSV components. ParametersReturn ValueA color_t value representing the specified HSV color with full opacity. DiscussionThis 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). hsvaCreates a color from HSVA components. ParametersReturn ValueA color_t value representing the specified HSVA color. DiscussionThis 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_rgbaConverts HSVA color space to RGBA. color_t hsva_to_rgba( color_hsva_t hsva); ParametersReturn ValueA color_t value representing the equivalent RGBA color. DiscussionThis function converts HSV color space back to RGBA, applying the standard HSV to RGB conversion algorithm. hsva_to_rgbafConverts HSVA color space to floating-point RGBA. color_rgbaf_t hsva_to_rgbaf( color_hsva_t hsva); ParametersReturn ValueA color_rgbaf_t structure with normalized RGBA components. DiscussionThis function converts HSV color space to normalized RGBA, providing higher precision than the 8-bit version. labCreates a color from CIELAB components. ParametersReturn ValueA color_t value representing the specified CIELAB color. DiscussionThis 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_rgbaConverts CIELAB color space to RGBA. color_t lab_to_rgba( color_lab_t lab); ParametersReturn ValueA color_t value representing the equivalent RGBA color. DiscussionThis function converts CIELAB color space back to RGBA using the D65 white point and sRGB color space. lab_to_xyzConverts CIELAB to CIEXYZ color space. color_xyz_t lab_to_xyz( color_lab_t lab); ParametersReturn ValueA color_xyz_t structure with XYZ tristimulus values. DiscussionThis function converts CIELAB to CIEXYZ using the D65 white point reference. rgbCreates an opaque color from RGB components. ParametersReturn ValueA color_t value representing the specified RGB color with full opacity. DiscussionThis 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_rgbaConverts RGB565 format to RGBA. color_t rgb565_to_rgba( color_rgb_t565 rgb565); ParametersReturn ValueA color_t value representing the equivalent RGBA color. DiscussionThis function converts RGB565 format back to RGBA, expanding the 5-6-5 bit components back to 8-bit values. rgb_565Creates a color from a 16-bit RGB565 value. ParametersReturn ValueA color_t value representing the specified RGB565 color. DiscussionThis 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. rgbaCreates a color from RGBA components. ParametersReturn ValueA color_t value representing the specified RGBA color. DiscussionThis 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_cmykConverts an RGBA color to CMYK color space. color_cmyk_t rgba_to_cmyk( color_t rgba); ParametersReturn ValueA color_cmyk_t structure with C (cyan), M (magenta), Y (yellow), K (black), and alpha. DiscussionThis 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_hslaConverts an RGBA color to HSLA color space. color_hsla_t rgba_to_hsla( color_t rgba); ParametersReturn ValueA 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). DiscussionThis function converts RGBA to HSL color space, where lightness represents the perceived brightness and saturation represents color purity. rgba_to_hsvaConverts an RGBA color to HSVA color space. color_hsva_t rgba_to_hsva( color_t rgba); ParametersReturn ValueA 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). DiscussionThis function converts RGBA to HSV color space, where hue represents the color angle, saturation represents color purity, and value represents brightness. rgba_to_labConverts an RGBA color to CIELAB color space. color_lab_t rgba_to_lab( color_t rgba); ParametersReturn ValueA color_lab_t structure with L* (0-100), a* (-128 to 128), b* (-128 to 128), and alpha (0.0-1.0). DiscussionThis 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_customConverts 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); ParametersReturn ValueA color_lab_t structure with L*, a*, b* components and alpha. DiscussionThis 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_rgb565Converts an RGBA color to RGB565 format. color_rgb_t565 rgba_to_rgb565( color_t rgba); ParametersReturn ValueA color_rgb_t565 structure with packed RGB565 value and alpha. DiscussionThis 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_rgbafConverts an RGBA color to floating-point RGBA format. color_rgbaf_t rgba_to_rgbaf( color_t rgba); ParametersReturn ValueA color_rgbaf_t structure with normalized floating-point components (0.0-1.0). DiscussionThis function converts 8-bit RGBA components to normalized floating-point values, which is useful for color calculations that require higher precision. rgba_to_xyzConverts an RGBA color to CIEXYZ color space. color_xyz_t rgba_to_xyz( color_t rgba); ParametersReturn ValueA color_xyz_t structure with X, Y, Z tristimulus values and alpha. DiscussionThis 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_customConverts 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); ParametersReturn ValueA color_xyz_t structure with XYZ tristimulus values and alpha. DiscussionThis 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_yuvConverts an RGBA color to YUV color space. color_yuv_t rgba_to_yuv( color_t rgba); ParametersReturn ValueA color_yuv_t structure with Y (luma), U (blue-luma difference), V (red-luma difference), and alpha. DiscussionThis function converts RGBA to YUV color space using the BT.601 standard. YUV separates luminance from chrominance information, commonly used in video encoding. rgbafCreates a color from floating-point RGBA components. ParametersReturn ValueA color_t value representing the specified floating-point RGBA color. DiscussionThis 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_hslaConverts floating-point RGBA to HSLA color space. color_hsla_t rgbaf_to_hsla( color_rgbaf_t rgbaf); ParametersReturn ValueA color_hsla_t structure with HSL components. DiscussionThis function converts normalized RGBA to HSL color space, providing higher precision than the 8-bit version. rgbaf_to_hsvaConverts floating-point RGBA to HSVA color space. color_hsva_t rgbaf_to_hsva( color_rgbaf_t rgbaf); ParametersReturn ValueA color_hsva_t structure with HSV components. DiscussionThis function converts normalized RGBA to HSV color space, providing higher precision than the 8-bit version. rgbaf_to_rgbaConverts floating-point RGBA to 8-bit RGBA format. color_t rgbaf_to_rgba( color_rgbaf_t rgbaf); ParametersReturn ValueA color_t value with clamped 8-bit components. DiscussionThis function converts normalized floating-point RGBA components to 8-bit integers, clamping values to the valid 0-255 range. rgbfCreates an opaque color from floating-point RGB components. ParametersReturn ValueA color_t value representing the specified floating-point RGB color with full opacity. DiscussionThis 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). xyzCreates a color from CIEXYZ components. ParametersReturn ValueA color_t value representing the specified CIEXYZ color. DiscussionThis 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_labConverts CIEXYZ to CIELAB color space. color_lab_t xyz_to_lab( color_xyz_t xyz); ParametersReturn ValueA color_lab_t structure with LAB components. DiscussionThis function converts CIEXYZ to CIELAB using the D65 white point reference. xyz_to_rgbaConverts CIEXYZ color space to RGBA. color_t xyz_to_rgba( color_xyz_t xyz); ParametersReturn ValueA color_t value representing the equivalent RGBA color. DiscussionThis function converts CIEXYZ color space back to RGBA using the D65 white point and sRGB color space. yuvCreates a color from YUV components. ParametersReturn ValueA color_t value representing the specified YUV color. DiscussionThis 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_rgbaConverts YUV color space to RGBA. color_t yuv_to_rgba( color_yuv_t yuv); ParametersReturn ValueA color_t value representing the equivalent RGBA color. DiscussionThis function converts YUV color space back to RGBA using the BT.601 standard. Typedefs
color_cmyk_tRepresents a color in CMYK color space. typedef struct color_cmyk_t { float c, m, y, k, a; } color_cmyk_t; FieldsDiscussionThe 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_tStructure representing HSLA (Hue, Saturation, Lightness, Alpha) colors. typedef struct color_hsla_t { float h, s, l, a; } color_hsla_t; FieldsDiscussionThis 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_tStructure representing HSVA (Hue, Saturation, Value, Alpha) colors. typedef struct color_hsva_t { float h, s, v, a; } color_hsva_t; FieldsDiscussionThis 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_tA 32-bit unsigned integer type for representing colors. typedef uint32_t color_int_t; DiscussionThis 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_tRepresents a color in CIE L*a*b* color space. typedef struct color_lab_t { float l, a, b, alpha; } color_lab_t; FieldsDiscussionThe 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_t565Represents a color in RGB565 format with alpha. typedef struct color_rgb_t565 { uint16_t rgb565; uint8_t a; } color_rgb_t565; FieldsDiscussionRGB565 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_tAlias for color_t representing RGBA colors. typedef color_t color_rgba_t; DiscussionThis typedef provides an alternative name for the color_t type, emphasizing its RGBA nature. It is functionally identical to color_t. color_rgbaf_tStructure representing RGBA colors with floating-point components. typedef struct color_rgbaf_t { float r, g, b, a; } color_rgbaf_t; FieldsDiscussionThis 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_tRepresents 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; Fieldscolor_xyz_tRepresents a color in CIE XYZ color space. typedef struct color_xyz_t { float x, y, z, a; } color_xyz_t; FieldsDiscussionThe 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_tRepresents a color in YUV color space. typedef struct color_yuv_t { float y, u, v, a; } color_yuv_t; FieldsDiscussionThe 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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_alice_blue = COLOR_ALICE_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_alice_blue = COLOR_ALICE_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_antique_white = COLOR_ANTIQUE_WHITE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_aqua = COLOR_AQUA; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_aquamarine = COLOR_AQUAMARINE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_azure = COLOR_AZURE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_beige = COLOR_BEIGE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_bisque = COLOR_BISQUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_black = COLOR_BLACK; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_blanched_almond = COLOR_BLANCHED_ALMOND; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_blue = COLOR_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_blue_violet = COLOR_BLUE_VIOLET; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_brown = COLOR_BROWN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_burlywood = COLOR_BURLYWOOD; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_cadet_blue = COLOR_CADET_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_chartreuse = COLOR_CHARTREUSE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_chocolate = COLOR_CHOCOLATE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_coral = COLOR_CORAL; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_cornflower_blue = COLOR_CORNFLOWER_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_cornsilk = COLOR_CORNSILK; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_crimson = COLOR_CRIMSON; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_cyan = COLOR_CYAN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_blue = COLOR_DARK_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_cyan = COLOR_DARK_CYAN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_goldenrod = COLOR_DARK_GOLDENROD; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_gray = COLOR_DARK_GRAY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_green = COLOR_DARK_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_khaki = COLOR_DARK_KHAKI; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_magenta = COLOR_DARK_MAGENTA; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_olive_green = COLOR_DARK_OLIVE_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_orange = COLOR_DARK_ORANGE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_orchid = COLOR_DARK_ORCHID; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_red = COLOR_DARK_RED; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_salmon = COLOR_DARK_SALMON; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_sea_green = COLOR_DARK_SEA_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_slate_blue = COLOR_DARK_SLATE_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_slate_gray = COLOR_DARK_SLATE_GRAY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_turquoise = COLOR_DARK_TURQUOISE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_violet = COLOR_DARK_VIOLET; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_deep_pink = COLOR_DEEP_PINK; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_deep_sky_blue = COLOR_DEEP_SKY_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dim_gray = COLOR_DIM_GRAY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_dodger_blue = COLOR_DODGER_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_firebrick = COLOR_FIREBRICK; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_floral_white = COLOR_FLORAL_WHITE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_forest_green = COLOR_FOREST_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_fuchsia = COLOR_FUCHSIA; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_gainsboro = COLOR_GAINSBORO; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_ghost_white = COLOR_GHOST_WHITE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_gold = COLOR_GOLD; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_goldenrod = COLOR_GOLDENROD; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_gray = COLOR_GRAY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_web_gray = COLOR_WEB_GRAY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_green = COLOR_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_web_green = COLOR_WEB_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_green_yellow = COLOR_GREEN_YELLOW; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_honeydew = COLOR_HONEYDEW; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_hot_pink = COLOR_HOT_PINK; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_indian_red = COLOR_INDIAN_RED; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_indigo = COLOR_INDIGO; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_ivory = COLOR_IVORY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_khaki = COLOR_KHAKI; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_lavender = COLOR_LAVENDER; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_lavender_blush = COLOR_LAVENDER_BLUSH; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_lawn_green = COLOR_LAWN_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_lemon_chiffon = COLOR_LEMON_CHIFFON; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_blue = COLOR_LIGHT_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_coral = COLOR_LIGHT_CORAL; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_cyan = COLOR_LIGHT_CYAN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_goldenrod = COLOR_LIGHT_GOLDENROD; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_gray = COLOR_LIGHT_GRAY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_green = COLOR_LIGHT_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_pink = COLOR_LIGHT_PINK; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_salmon = COLOR_LIGHT_SALMON; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_sea_green = COLOR_LIGHT_SEA_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_sky_blue = COLOR_LIGHT_SKY_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_slate_gray = COLOR_LIGHT_SLATE_GRAY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_steel_blue = COLOR_LIGHT_STEEL_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_yellow = COLOR_LIGHT_YELLOW; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_lime = COLOR_LIME; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_lime_green = COLOR_LIME_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_linen = COLOR_LINEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_magenta = COLOR_MAGENTA; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_maroon = COLOR_MAROON; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_web_maroon = COLOR_WEB_MAROON; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_aquamarine = COLOR_MEDIUM_AQUAMARINE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_blue = COLOR_MEDIUM_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_orchid = COLOR_MEDIUM_ORCHID; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_purple = COLOR_MEDIUM_PURPLE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_sea_green = COLOR_MEDIUM_SEA_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_slate_blue = COLOR_MEDIUM_SLATE_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_spring_green = COLOR_MEDIUM_SPRING_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_turquoise = COLOR_MEDIUM_TURQUOISE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_violet_red = COLOR_MEDIUM_VIOLET_RED; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_midnight_blue = COLOR_MIDNIGHT_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_mint_cream = COLOR_MINT_CREAM; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_misty_rose = COLOR_MISTY_ROSE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_moccasin = COLOR_MOCCASIN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_navajo_white = COLOR_NAVAJO_WHITE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_navy_blue = COLOR_NAVY_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_old_lace = COLOR_OLD_LACE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_olive = COLOR_OLIVE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_olive_drab = COLOR_OLIVE_DRAB; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_orange = COLOR_ORANGE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_orange_red = COLOR_ORANGE_RED; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_orchid = COLOR_ORCHID; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_pale_goldenrod = COLOR_PALE_GOLDENROD; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_pale_green = COLOR_PALE_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_pale_turquoise = COLOR_PALE_TURQUOISE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_pale_violet_red = COLOR_PALE_VIOLET_RED; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_papaya_whip = COLOR_PAPAYA_WHIP; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_peach_puff = COLOR_PEACH_PUFF; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_peru = COLOR_PERU; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_pink = COLOR_PINK; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_plum = COLOR_PLUM; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_powder_blue = COLOR_POWDER_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_purple = COLOR_PURPLE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_web_purple = COLOR_WEB_PURPLE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_rebecca_purple = COLOR_REBECCA_PURPLE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_rosy_brown = COLOR_ROSY_BROWN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_royal_blue = COLOR_ROYAL_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_saddle_brown = COLOR_SADDLE_BROWN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_salmon = COLOR_SALMON; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_sandy_brown = COLOR_SANDY_BROWN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_sea_green = COLOR_SEA_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_seashell = COLOR_SEASHELL; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_sienna = COLOR_SIENNA; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_silver = COLOR_SILVER; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_sky_blue = COLOR_SKY_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_slate_blue = COLOR_SLATE_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_slate_gray = COLOR_SLATE_GRAY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_snow = COLOR_SNOW; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_spring_green = COLOR_SPRING_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_steel_blue = COLOR_STEEL_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_teal = COLOR_TEAL; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_thistle = COLOR_THISTLE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_tomato = COLOR_TOMATO; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_transparent = COLOR_TRANSPARENT; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_turquoise = COLOR_TURQUOISE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_violet = COLOR_VIOLET; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_wheat = COLOR_WHEAT; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_white = COLOR_WHITE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_white_smoke = COLOR_WHITE_SMOKE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_yellow = COLOR_YELLOW; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined color constants for common web colors. static _CONSTEXPR color_t color_yellow_green = COLOR_YELLOW_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_whitePredefined color constants for common web colors. static _CONSTEXPR color_t color_antique_white = COLOR_ANTIQUE_WHITE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_aquaPredefined color constants for common web colors. static _CONSTEXPR color_t color_aqua = COLOR_AQUA; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_aquamarinePredefined color constants for common web colors. static _CONSTEXPR color_t color_aquamarine = COLOR_AQUAMARINE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_azurePredefined color constants for common web colors. static _CONSTEXPR color_t color_azure = COLOR_AZURE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_beigePredefined color constants for common web colors. static _CONSTEXPR color_t color_beige = COLOR_BEIGE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_bisquePredefined color constants for common web colors. static _CONSTEXPR color_t color_bisque = COLOR_BISQUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_blackPredefined color constants for common web colors. static _CONSTEXPR color_t color_black = COLOR_BLACK; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_almondPredefined color constants for common web colors. static _CONSTEXPR color_t color_blanched_almond = COLOR_BLANCHED_ALMOND; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_blue = COLOR_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_violetPredefined color constants for common web colors. static _CONSTEXPR color_t color_blue_violet = COLOR_BLUE_VIOLET; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_brownPredefined color constants for common web colors. static _CONSTEXPR color_t color_brown = COLOR_BROWN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_burlywoodPredefined color constants for common web colors. static _CONSTEXPR color_t color_burlywood = COLOR_BURLYWOOD; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_cadet_blue = COLOR_CADET_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_chartreusePredefined color constants for common web colors. static _CONSTEXPR color_t color_chartreuse = COLOR_CHARTREUSE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_chocolatePredefined color constants for common web colors. static _CONSTEXPR color_t color_chocolate = COLOR_CHOCOLATE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_coralPredefined color constants for common web colors. static _CONSTEXPR color_t color_coral = COLOR_CORAL; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_cornflower_blue = COLOR_CORNFLOWER_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_cornsilkPredefined color constants for common web colors. static _CONSTEXPR color_t color_cornsilk = COLOR_CORNSILK; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_crimsonPredefined color constants for common web colors. static _CONSTEXPR color_t color_crimson = COLOR_CRIMSON; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_cyanPredefined color constants for common web colors. static _CONSTEXPR color_t color_cyan = COLOR_CYAN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_blue = COLOR_DARK_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_cyanPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_cyan = COLOR_DARK_CYAN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_goldenrodPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_goldenrod = COLOR_DARK_GOLDENROD; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_grayPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_gray = COLOR_DARK_GRAY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_greenPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_green = COLOR_DARK_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_khakiPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_khaki = COLOR_DARK_KHAKI; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_magentaPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_magenta = COLOR_DARK_MAGENTA; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_greenPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_olive_green = COLOR_DARK_OLIVE_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_orangePredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_orange = COLOR_DARK_ORANGE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_orchidPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_orchid = COLOR_DARK_ORCHID; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_redPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_red = COLOR_DARK_RED; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_salmonPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_salmon = COLOR_DARK_SALMON; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_greenPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_sea_green = COLOR_DARK_SEA_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_slate_blue = COLOR_DARK_SLATE_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_grayPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_slate_gray = COLOR_DARK_SLATE_GRAY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_turquoisePredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_turquoise = COLOR_DARK_TURQUOISE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_violetPredefined color constants for common web colors. static _CONSTEXPR color_t color_dark_violet = COLOR_DARK_VIOLET; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_pinkPredefined color constants for common web colors. static _CONSTEXPR color_t color_deep_pink = COLOR_DEEP_PINK; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_deep_sky_blue = COLOR_DEEP_SKY_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_grayPredefined color constants for common web colors. static _CONSTEXPR color_t color_dim_gray = COLOR_DIM_GRAY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_dodger_blue = COLOR_DODGER_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_firebrickPredefined color constants for common web colors. static _CONSTEXPR color_t color_firebrick = COLOR_FIREBRICK; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_whitePredefined color constants for common web colors. static _CONSTEXPR color_t color_floral_white = COLOR_FLORAL_WHITE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_greenPredefined color constants for common web colors. static _CONSTEXPR color_t color_forest_green = COLOR_FOREST_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_fuchsiaPredefined color constants for common web colors. static _CONSTEXPR color_t color_fuchsia = COLOR_FUCHSIA; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_gainsboroPredefined color constants for common web colors. static _CONSTEXPR color_t color_gainsboro = COLOR_GAINSBORO; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_whitePredefined color constants for common web colors. static _CONSTEXPR color_t color_ghost_white = COLOR_GHOST_WHITE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_goldPredefined color constants for common web colors. static _CONSTEXPR color_t color_gold = COLOR_GOLD; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_goldenrodPredefined color constants for common web colors. static _CONSTEXPR color_t color_goldenrod = COLOR_GOLDENROD; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_grayPredefined color constants for common web colors. static _CONSTEXPR color_t color_gray = COLOR_GRAY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_greenPredefined color constants for common web colors. static _CONSTEXPR color_t color_green = COLOR_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_yellowPredefined color constants for common web colors. static _CONSTEXPR color_t color_green_yellow = COLOR_GREEN_YELLOW; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_honeydewPredefined color constants for common web colors. static _CONSTEXPR color_t color_honeydew = COLOR_HONEYDEW; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_pinkPredefined color constants for common web colors. static _CONSTEXPR color_t color_hot_pink = COLOR_HOT_PINK; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_redPredefined color constants for common web colors. static _CONSTEXPR color_t color_indian_red = COLOR_INDIAN_RED; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_indigoPredefined color constants for common web colors. static _CONSTEXPR color_t color_indigo = COLOR_INDIGO; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_ivoryPredefined color constants for common web colors. static _CONSTEXPR color_t color_ivory = COLOR_IVORY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_khakiPredefined color constants for common web colors. static _CONSTEXPR color_t color_khaki = COLOR_KHAKI; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_lavenderPredefined color constants for common web colors. static _CONSTEXPR color_t color_lavender = COLOR_LAVENDER; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blushPredefined color constants for common web colors. static _CONSTEXPR color_t color_lavender_blush = COLOR_LAVENDER_BLUSH; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_greenPredefined color constants for common web colors. static _CONSTEXPR color_t color_lawn_green = COLOR_LAWN_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_chiffonPredefined color constants for common web colors. static _CONSTEXPR color_t color_lemon_chiffon = COLOR_LEMON_CHIFFON; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_light_blue = COLOR_LIGHT_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_coralPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_coral = COLOR_LIGHT_CORAL; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_cyanPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_cyan = COLOR_LIGHT_CYAN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_goldenrodPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_goldenrod = COLOR_LIGHT_GOLDENROD; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_grayPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_gray = COLOR_LIGHT_GRAY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_greenPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_green = COLOR_LIGHT_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_pinkPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_pink = COLOR_LIGHT_PINK; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_salmonPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_salmon = COLOR_LIGHT_SALMON; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_greenPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_sea_green = COLOR_LIGHT_SEA_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_light_sky_blue = COLOR_LIGHT_SKY_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_grayPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_slate_gray = COLOR_LIGHT_SLATE_GRAY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_light_steel_blue = COLOR_LIGHT_STEEL_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_yellowPredefined color constants for common web colors. static _CONSTEXPR color_t color_light_yellow = COLOR_LIGHT_YELLOW; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_limePredefined color constants for common web colors. static _CONSTEXPR color_t color_lime = COLOR_LIME; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_greenPredefined color constants for common web colors. static _CONSTEXPR color_t color_lime_green = COLOR_LIME_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_linenPredefined color constants for common web colors. static _CONSTEXPR color_t color_linen = COLOR_LINEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_magentaPredefined color constants for common web colors. static _CONSTEXPR color_t color_magenta = COLOR_MAGENTA; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_maroonPredefined color constants for common web colors. static _CONSTEXPR color_t color_maroon = COLOR_MAROON; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_aquamarinePredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_aquamarine = COLOR_MEDIUM_AQUAMARINE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_blue = COLOR_MEDIUM_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_orchidPredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_orchid = COLOR_MEDIUM_ORCHID; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_purplePredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_purple = COLOR_MEDIUM_PURPLE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_greenPredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_sea_green = COLOR_MEDIUM_SEA_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_slate_blue = COLOR_MEDIUM_SLATE_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_greenPredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_spring_green = COLOR_MEDIUM_SPRING_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_turquoisePredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_turquoise = COLOR_MEDIUM_TURQUOISE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_redPredefined color constants for common web colors. static _CONSTEXPR color_t color_medium_violet_red = COLOR_MEDIUM_VIOLET_RED; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_midnight_blue = COLOR_MIDNIGHT_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_creamPredefined color constants for common web colors. static _CONSTEXPR color_t color_mint_cream = COLOR_MINT_CREAM; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_rosePredefined color constants for common web colors. static _CONSTEXPR color_t color_misty_rose = COLOR_MISTY_ROSE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_moccasinPredefined color constants for common web colors. static _CONSTEXPR color_t color_moccasin = COLOR_MOCCASIN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_whitePredefined color constants for common web colors. static _CONSTEXPR color_t color_navajo_white = COLOR_NAVAJO_WHITE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_navy_blue = COLOR_NAVY_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_lacePredefined color constants for common web colors. static _CONSTEXPR color_t color_old_lace = COLOR_OLD_LACE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_olivePredefined color constants for common web colors. static _CONSTEXPR color_t color_olive = COLOR_OLIVE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_drabPredefined color constants for common web colors. static _CONSTEXPR color_t color_olive_drab = COLOR_OLIVE_DRAB; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_orangePredefined color constants for common web colors. static _CONSTEXPR color_t color_orange = COLOR_ORANGE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_redPredefined color constants for common web colors. static _CONSTEXPR color_t color_orange_red = COLOR_ORANGE_RED; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_orchidPredefined color constants for common web colors. static _CONSTEXPR color_t color_orchid = COLOR_ORCHID; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_goldenrodPredefined color constants for common web colors. static _CONSTEXPR color_t color_pale_goldenrod = COLOR_PALE_GOLDENROD; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_greenPredefined color constants for common web colors. static _CONSTEXPR color_t color_pale_green = COLOR_PALE_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_turquoisePredefined color constants for common web colors. static _CONSTEXPR color_t color_pale_turquoise = COLOR_PALE_TURQUOISE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_redPredefined color constants for common web colors. static _CONSTEXPR color_t color_pale_violet_red = COLOR_PALE_VIOLET_RED; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_whipPredefined color constants for common web colors. static _CONSTEXPR color_t color_papaya_whip = COLOR_PAPAYA_WHIP; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_puffPredefined color constants for common web colors. static _CONSTEXPR color_t color_peach_puff = COLOR_PEACH_PUFF; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_peruPredefined color constants for common web colors. static _CONSTEXPR color_t color_peru = COLOR_PERU; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_pinkPredefined color constants for common web colors. static _CONSTEXPR color_t color_pink = COLOR_PINK; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_plumPredefined color constants for common web colors. static _CONSTEXPR color_t color_plum = COLOR_PLUM; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_powder_blue = COLOR_POWDER_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_purplePredefined color constants for common web colors. static _CONSTEXPR color_t color_purple = COLOR_PURPLE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_purplePredefined color constants for common web colors. static _CONSTEXPR color_t color_rebecca_purple = COLOR_REBECCA_PURPLE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_redPredefined color constants for common web colors. DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_brownPredefined color constants for common web colors. static _CONSTEXPR color_t color_rosy_brown = COLOR_ROSY_BROWN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_royal_blue = COLOR_ROYAL_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_brownPredefined color constants for common web colors. static _CONSTEXPR color_t color_saddle_brown = COLOR_SADDLE_BROWN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_salmonPredefined color constants for common web colors. static _CONSTEXPR color_t color_salmon = COLOR_SALMON; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_brownPredefined color constants for common web colors. static _CONSTEXPR color_t color_sandy_brown = COLOR_SANDY_BROWN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_greenPredefined color constants for common web colors. static _CONSTEXPR color_t color_sea_green = COLOR_SEA_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_seashellPredefined color constants for common web colors. static _CONSTEXPR color_t color_seashell = COLOR_SEASHELL; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_siennaPredefined color constants for common web colors. static _CONSTEXPR color_t color_sienna = COLOR_SIENNA; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_silverPredefined color constants for common web colors. static _CONSTEXPR color_t color_silver = COLOR_SILVER; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_sky_blue = COLOR_SKY_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_slate_blue = COLOR_SLATE_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_grayPredefined color constants for common web colors. static _CONSTEXPR color_t color_slate_gray = COLOR_SLATE_GRAY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_snowPredefined color constants for common web colors. static _CONSTEXPR color_t color_snow = COLOR_SNOW; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_greenPredefined color constants for common web colors. static _CONSTEXPR color_t color_spring_green = COLOR_SPRING_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_bluePredefined color constants for common web colors. static _CONSTEXPR color_t color_steel_blue = COLOR_STEEL_BLUE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_tanPredefined color constants for common web colors. DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_tealPredefined color constants for common web colors. static _CONSTEXPR color_t color_teal = COLOR_TEAL; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_thistlePredefined color constants for common web colors. static _CONSTEXPR color_t color_thistle = COLOR_THISTLE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_tomatoPredefined color constants for common web colors. static _CONSTEXPR color_t color_tomato = COLOR_TOMATO; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_transparentPredefined color constants for common web colors. static _CONSTEXPR color_t color_transparent = COLOR_TRANSPARENT; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_turquoisePredefined color constants for common web colors. static _CONSTEXPR color_t color_turquoise = COLOR_TURQUOISE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_violetPredefined color constants for common web colors. static _CONSTEXPR color_t color_violet = COLOR_VIOLET; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_grayPredefined color constants for common web colors. static _CONSTEXPR color_t color_web_gray = COLOR_WEB_GRAY; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_greenPredefined color constants for common web colors. static _CONSTEXPR color_t color_web_green = COLOR_WEB_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_maroonPredefined color constants for common web colors. static _CONSTEXPR color_t color_web_maroon = COLOR_WEB_MAROON; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_purplePredefined color constants for common web colors. static _CONSTEXPR color_t color_web_purple = COLOR_WEB_PURPLE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_wheatPredefined color constants for common web colors. static _CONSTEXPR color_t color_wheat = COLOR_WHEAT; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_whitePredefined color constants for common web colors. static _CONSTEXPR color_t color_white = COLOR_WHITE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_smokePredefined color constants for common web colors. static _CONSTEXPR color_t color_white_smoke = COLOR_WHITE_SMOKE; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also color_yellowPredefined color constants for common web colors. static _CONSTEXPR color_t color_yellow = COLOR_YELLOW; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_greenPredefined color constants for common web colors. static _CONSTEXPR color_t color_yellow_green = COLOR_YELLOW_GREEN; DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - 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_FLTPredefined color constants for common web colors. #define COLOR_ALICE_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_ALICE_BLUE_INT 0xF0F8FFFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_blockPredefined 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 DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_WHITEPredefined color constants for common web colors. #define COLOR_ANTIQUE_WHITE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_ANTIQUE_WHITE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_ANTIQUE_WHITE_INT 0xFAEBD7FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_AQUAPredefined color constants for common web colors. #define COLOR_AQUA DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_AQUA_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_AQUA_INT 0x00FFFFFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_AQUAMARINEPredefined color constants for common web colors. #define COLOR_AQUAMARINE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_AQUAMARINE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_AQUAMARINE_INT 0x7FFFD4FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_AZUREPredefined color constants for common web colors. #define COLOR_AZURE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_AZURE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_AZURE_INT 0xF0FFFFFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_BEIGEPredefined color constants for common web colors. #define COLOR_BEIGE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_BEIGE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_BEIGE_INT 0xF5F5DCFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_BISQUEPredefined color constants for common web colors. #define COLOR_BISQUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_BISQUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_BISQUE_INT 0xFFE4C4FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_BLACKPredefined color constants for common web colors. #define COLOR_BLACK DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_BLACK_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_BLACK_INT 0x000000FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_ALMONDPredefined color constants for common web colors. #define COLOR_BLANCHED_ALMOND DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_BLANCHED_ALMOND_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_BLANCHED_ALMOND_INT 0xFFEBCDFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_BLUEPredefined color constants for common web colors. #define COLOR_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_BLUE_INT 0x0000FFFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_VIOLETPredefined color constants for common web colors. #define COLOR_BLUE_VIOLET DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_BLUE_VIOLET_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_BLUE_VIOLET_INT 0x8A2BE2FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_BROWNPredefined color constants for common web colors. #define COLOR_BROWN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_BROWN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_BROWN_INT 0xA52A2AFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_BURLYWOODPredefined color constants for common web colors. #define COLOR_BURLYWOOD DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_BURLYWOOD_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_BURLYWOOD_INT 0xDEB887FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_CADET_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_CADET_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_CADET_BLUE_INT 0x5F9EA0FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_CHARTREUSEPredefined color constants for common web colors. #define COLOR_CHARTREUSE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_CHARTREUSE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_CHARTREUSE_INT 0x7FFF00FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_CHOCOLATEPredefined color constants for common web colors. #define COLOR_CHOCOLATE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_CHOCOLATE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_CHOCOLATE_INT 0xD2691EFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_CORALPredefined color constants for common web colors. #define COLOR_CORAL DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_CORAL_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_CORAL_INT 0xFF7F50FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_CORNFLOWER_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_CORNFLOWER_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_CORNFLOWER_BLUE_INT 0x6495EDFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_CORNSILKPredefined color constants for common web colors. #define COLOR_CORNSILK DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_CORNSILK_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_CORNSILK_INT 0xFFF8DCFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_CRIMSONPredefined color constants for common web colors. #define COLOR_CRIMSON DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_CRIMSON_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_CRIMSON_INT 0xDC143CFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_CYANPredefined color constants for common web colors. #define COLOR_CYAN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_CYAN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_CYAN_INT 0x00FFFFFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_DARK_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_BLUE_INT 0x00008BFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_CYANPredefined color constants for common web colors. #define COLOR_DARK_CYAN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_CYAN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_CYAN_INT 0x008B8BFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GOLDENRODPredefined color constants for common web colors. #define COLOR_DARK_GOLDENROD DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_GOLDENROD_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_GOLDENROD_INT 0xB8860BFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GRAYPredefined color constants for common web colors. #define COLOR_DARK_GRAY DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_GRAY_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_GRAY_INT 0xA9A9A9FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GREENPredefined color constants for common web colors. #define COLOR_DARK_GREEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_GREEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_GREEN_INT 0x006400FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_KHAKIPredefined color constants for common web colors. #define COLOR_DARK_KHAKI DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_KHAKI_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_KHAKI_INT 0xBDB76BFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_MAGENTAPredefined color constants for common web colors. #define COLOR_DARK_MAGENTA DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_MAGENTA_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_MAGENTA_INT 0x8B008BFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GREENPredefined color constants for common web colors. #define COLOR_DARK_OLIVE_GREEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_OLIVE_GREEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_OLIVE_GREEN_INT 0x556B2FFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_ORANGEPredefined color constants for common web colors. #define COLOR_DARK_ORANGE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_ORANGE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_ORANGE_INT 0xFF8C00FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_ORCHIDPredefined color constants for common web colors. #define COLOR_DARK_ORCHID DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_ORCHID_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_ORCHID_INT 0x9932CCFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_REDPredefined color constants for common web colors. #define COLOR_DARK_RED DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_RED_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_RED_INT 0x8B0000FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_SALMONPredefined color constants for common web colors. #define COLOR_DARK_SALMON DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_SALMON_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_SALMON_INT 0xE9967AFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GREENPredefined color constants for common web colors. #define COLOR_DARK_SEA_GREEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_SEA_GREEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_SEA_GREEN_INT 0x8FBC8FFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_DARK_SLATE_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_SLATE_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_SLATE_BLUE_INT 0x483D8BFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GRAYPredefined color constants for common web colors. #define COLOR_DARK_SLATE_GRAY DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_SLATE_GRAY_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_SLATE_GRAY_INT 0x2F4F4FFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_TURQUOISEPredefined color constants for common web colors. #define COLOR_DARK_TURQUOISE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_TURQUOISE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_TURQUOISE_INT 0x00CED1FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_VIOLETPredefined color constants for common web colors. #define COLOR_DARK_VIOLET DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DARK_VIOLET_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DARK_VIOLET_INT 0x9400D3FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_PINKPredefined color constants for common web colors. #define COLOR_DEEP_PINK DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DEEP_PINK_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DEEP_PINK_INT 0xFF1493FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_DEEP_SKY_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DEEP_SKY_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DEEP_SKY_BLUE_INT 0x00BFFFFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GRAYPredefined color constants for common web colors. #define COLOR_DIM_GRAY DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DIM_GRAY_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DIM_GRAY_INT 0x696969FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_DODGER_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_DODGER_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_DODGER_BLUE_INT 0x1E90FFFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_FIREBRICKPredefined color constants for common web colors. #define COLOR_FIREBRICK DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_FIREBRICK_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_FIREBRICK_INT 0xB22222FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_WHITEPredefined color constants for common web colors. #define COLOR_FLORAL_WHITE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_FLORAL_WHITE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_FLORAL_WHITE_INT 0xFFFAF0FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GREENPredefined color constants for common web colors. #define COLOR_FOREST_GREEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_FOREST_GREEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_FOREST_GREEN_INT 0x228B22FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_FUCHSIAPredefined color constants for common web colors. #define COLOR_FUCHSIA DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_FUCHSIA_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_FUCHSIA_INT 0xFF00FFFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_GAINSBOROPredefined color constants for common web colors. #define COLOR_GAINSBORO DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_GAINSBORO_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_GAINSBORO_INT 0xDCDCDCFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_WHITEPredefined color constants for common web colors. #define COLOR_GHOST_WHITE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_GHOST_WHITE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_GHOST_WHITE_INT 0xF8F8FFFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_GOLDPredefined color constants for common web colors. #define COLOR_GOLD DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_GOLD_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_GOLD_INT 0xFFD700FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_GOLDENRODPredefined color constants for common web colors. #define COLOR_GOLDENROD DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_GOLDENROD_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_GOLDENROD_INT 0xDAA520FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_GRAYPredefined color constants for common web colors. #define COLOR_GRAY DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_GRAY_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_GRAY_INT 0xBEBEBEFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_GREENPredefined color constants for common web colors. #define COLOR_GREEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_GREEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_GREEN_INT 0x00FF00FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_YELLOWPredefined color constants for common web colors. #define COLOR_GREEN_YELLOW DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_GREEN_YELLOW_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_GREEN_YELLOW_INT 0xADFF2FFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_HONEYDEWPredefined color constants for common web colors. #define COLOR_HONEYDEW DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_HONEYDEW_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_HONEYDEW_INT 0xF0FFF0FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_PINKPredefined color constants for common web colors. #define COLOR_HOT_PINK DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_HOT_PINK_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_HOT_PINK_INT 0xFF69B4FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_REDPredefined color constants for common web colors. #define COLOR_INDIAN_RED DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_INDIAN_RED_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_INDIAN_RED_INT 0xCD5C5CFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_INDIGOPredefined color constants for common web colors. #define COLOR_INDIGO DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_INDIGO_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_INDIGO_INT 0x4B0082FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_IVORYPredefined color constants for common web colors. #define COLOR_IVORY DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_IVORY_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_IVORY_INT 0xFFFFF0FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_KHAKIPredefined color constants for common web colors. #define COLOR_KHAKI DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_KHAKI_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_KHAKI_INT 0xF0E68CFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_LAVENDERPredefined color constants for common web colors. #define COLOR_LAVENDER DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUSHPredefined color constants for common web colors. #define COLOR_LAVENDER_BLUSH DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LAVENDER_BLUSH_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LAVENDER_BLUSH_INT 0xFFF0F5FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LAVENDER_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LAVENDER_INT 0xE6E6FAFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GREENPredefined color constants for common web colors. #define COLOR_LAWN_GREEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LAWN_GREEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LAWN_GREEN_INT 0x7CFC00FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_CHIFFONPredefined color constants for common web colors. #define COLOR_LEMON_CHIFFON DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LEMON_CHIFFON_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LEMON_CHIFFON_INT 0xFFFACDFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_LIGHT_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LIGHT_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LIGHT_BLUE_INT 0xADD8E6FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_CORALPredefined color constants for common web colors. #define COLOR_LIGHT_CORAL DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LIGHT_CORAL_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LIGHT_CORAL_INT 0xF08080FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_CYANPredefined color constants for common web colors. #define COLOR_LIGHT_CYAN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LIGHT_CYAN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LIGHT_CYAN_INT 0xE0FFFFFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GOLDENRODPredefined color constants for common web colors. #define COLOR_LIGHT_GOLDENROD DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LIGHT_GOLDENROD_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LIGHT_GOLDENROD_INT 0xFAFAD2FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GRAYPredefined color constants for common web colors. #define COLOR_LIGHT_GRAY DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LIGHT_GRAY_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LIGHT_GRAY_INT 0xD3D3D3FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GREENPredefined color constants for common web colors. #define COLOR_LIGHT_GREEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LIGHT_GREEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LIGHT_GREEN_INT 0x90EE90FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_PINKPredefined color constants for common web colors. #define COLOR_LIGHT_PINK DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LIGHT_PINK_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LIGHT_PINK_INT 0xFFB6C1FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_SALMONPredefined color constants for common web colors. #define COLOR_LIGHT_SALMON DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LIGHT_SALMON_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LIGHT_SALMON_INT 0xFFA07AFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GREENPredefined color constants for common web colors. #define COLOR_LIGHT_SEA_GREEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LIGHT_SEA_GREEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LIGHT_SEA_GREEN_INT 0x20B2AAFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_LIGHT_SKY_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LIGHT_SKY_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LIGHT_SKY_BLUE_INT 0x87CEFAFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GRAYPredefined color constants for common web colors. #define COLOR_LIGHT_SLATE_GRAY DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LIGHT_SLATE_GRAY_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LIGHT_SLATE_GRAY_INT 0x778899FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_LIGHT_STEEL_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LIGHT_STEEL_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LIGHT_STEEL_BLUE_INT 0xB0C4DEFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_YELLOWPredefined color constants for common web colors. #define COLOR_LIGHT_YELLOW DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LIGHT_YELLOW_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LIGHT_YELLOW_INT 0xFFFFE0FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_LIMEPredefined color constants for common web colors. #define COLOR_LIME DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LIME_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GREENPredefined color constants for common web colors. #define COLOR_LIME_GREEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LIME_GREEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LIME_GREEN_INT 0x32CD32FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LIME_INT 0x00FF00FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_LINENPredefined color constants for common web colors. #define COLOR_LINEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_LINEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_LINEN_INT 0xFAF0E6FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_MAGENTAPredefined color constants for common web colors. #define COLOR_MAGENTA DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_MAGENTA_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_MAGENTA_INT 0xFF00FFFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_MAROONPredefined color constants for common web colors. #define COLOR_MAROON DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_MAROON_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_MAROON_INT 0xB03060FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_AQUAMARINEPredefined color constants for common web colors. #define COLOR_MEDIUM_AQUAMARINE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_MEDIUM_AQUAMARINE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_MEDIUM_AQUAMARINE_INT 0x66CDAAFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_MEDIUM_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_MEDIUM_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_MEDIUM_BLUE_INT 0x0000CDFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_ORCHIDPredefined color constants for common web colors. #define COLOR_MEDIUM_ORCHID DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_MEDIUM_ORCHID_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_MEDIUM_ORCHID_INT 0xBA55D3FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_PURPLEPredefined color constants for common web colors. #define COLOR_MEDIUM_PURPLE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_MEDIUM_PURPLE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_MEDIUM_PURPLE_INT 0x9370DBFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GREENPredefined color constants for common web colors. #define COLOR_MEDIUM_SEA_GREEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_MEDIUM_SEA_GREEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_MEDIUM_SEA_GREEN_INT 0x3CB371FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_MEDIUM_SLATE_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_MEDIUM_SLATE_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_MEDIUM_SLATE_BLUE_INT 0x7B68EEFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GREENPredefined color constants for common web colors. #define COLOR_MEDIUM_SPRING_GREEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_MEDIUM_SPRING_GREEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_MEDIUM_SPRING_GREEN_INT 0x00FA9AFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_TURQUOISEPredefined color constants for common web colors. #define COLOR_MEDIUM_TURQUOISE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_MEDIUM_TURQUOISE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_MEDIUM_TURQUOISE_INT 0x48D1CCFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_REDPredefined color constants for common web colors. #define COLOR_MEDIUM_VIOLET_RED DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_MEDIUM_VIOLET_RED_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_MEDIUM_VIOLET_RED_INT 0xC71585FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_MIDNIGHT_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_MIDNIGHT_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_MIDNIGHT_BLUE_INT 0x191970FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_CREAMPredefined color constants for common web colors. #define COLOR_MINT_CREAM DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_MINT_CREAM_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_MINT_CREAM_INT 0xF5FFFAFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_ROSEPredefined color constants for common web colors. #define COLOR_MISTY_ROSE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_MISTY_ROSE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_MISTY_ROSE_INT 0xFFE4E1FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_MOCCASINPredefined color constants for common web colors. #define COLOR_MOCCASIN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_MOCCASIN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_MOCCASIN_INT 0xFFE4B5FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_WHITEPredefined color constants for common web colors. #define COLOR_NAVAJO_WHITE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_NAVAJO_WHITE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_NAVAJO_WHITE_INT 0xFFDEADFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_NAVY_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_NAVY_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_NAVY_BLUE_INT 0x000080FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_LACEPredefined color constants for common web colors. #define COLOR_OLD_LACE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_OLD_LACE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_OLD_LACE_INT 0xFDF5E6FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_OLIVEPredefined color constants for common web colors. #define COLOR_OLIVE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_DRABPredefined color constants for common web colors. #define COLOR_OLIVE_DRAB DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_OLIVE_DRAB_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_OLIVE_DRAB_INT 0x6B8E23FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_OLIVE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_OLIVE_INT 0x808000FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_ORANGEPredefined color constants for common web colors. #define COLOR_ORANGE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_ORANGE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_ORANGE_INT 0xFFA500FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_REDPredefined color constants for common web colors. #define COLOR_ORANGE_RED DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_ORANGE_RED_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_ORANGE_RED_INT 0xFF4500FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_ORCHIDPredefined color constants for common web colors. #define COLOR_ORCHID DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_ORCHID_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_ORCHID_INT 0xDA70D6FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GOLDENRODPredefined color constants for common web colors. #define COLOR_PALE_GOLDENROD DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_PALE_GOLDENROD_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_PALE_GOLDENROD_INT 0xEEE8AAFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GREENPredefined color constants for common web colors. #define COLOR_PALE_GREEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_PALE_GREEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_PALE_GREEN_INT 0x98FB98FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_TURQUOISEPredefined color constants for common web colors. #define COLOR_PALE_TURQUOISE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_PALE_TURQUOISE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_PALE_TURQUOISE_INT 0xAFEEEEFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_REDPredefined color constants for common web colors. #define COLOR_PALE_VIOLET_RED DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_PALE_VIOLET_RED_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_PALE_VIOLET_RED_INT 0xDB7093FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_WHIPPredefined color constants for common web colors. #define COLOR_PAPAYA_WHIP DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_PAPAYA_WHIP_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_PAPAYA_WHIP_INT 0xFFEFD5FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_PUFFPredefined color constants for common web colors. #define COLOR_PEACH_PUFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_PEACH_PUFF_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_PEACH_PUFF_INT 0xFFDAB9FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_PERUPredefined color constants for common web colors. #define COLOR_PERU DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_PERU_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_PERU_INT 0xCD853FFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_PINKPredefined color constants for common web colors. #define COLOR_PINK DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_PINK_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_PINK_INT 0xFFC0CBFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_PLUMPredefined color constants for common web colors. #define COLOR_PLUM DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_PLUM_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_PLUM_INT 0xDDA0DDFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_POWDER_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_POWDER_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_POWDER_BLUE_INT 0xB0E0E6FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_PURPLEPredefined color constants for common web colors. #define COLOR_PURPLE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_PURPLE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_PURPLE_INT 0xA020F0FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_PURPLEPredefined color constants for common web colors. #define COLOR_REBECCA_PURPLE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_REBECCA_PURPLE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_REBECCA_PURPLE_INT 0x663399FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_REDPredefined color constants for common web colors. #define COLOR_RED DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_RED_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_RED_INT 0xFF0000FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BROWNPredefined color constants for common web colors. #define COLOR_ROSY_BROWN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_ROSY_BROWN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_ROSY_BROWN_INT 0xBC8F8FFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_ROYAL_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_ROYAL_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_ROYAL_BLUE_INT 0x4169E1FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BROWNPredefined color constants for common web colors. #define COLOR_SADDLE_BROWN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_SADDLE_BROWN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_SADDLE_BROWN_INT 0x8B4513FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_SALMONPredefined color constants for common web colors. #define COLOR_SALMON DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_SALMON_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_SALMON_INT 0xFA8072FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BROWNPredefined color constants for common web colors. #define COLOR_SANDY_BROWN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_SANDY_BROWN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_SANDY_BROWN_INT 0xF4A460FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GREENPredefined color constants for common web colors. #define COLOR_SEA_GREEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_SEA_GREEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_SEA_GREEN_INT 0x2E8B57FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_SEASHELLPredefined color constants for common web colors. #define COLOR_SEASHELL DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_SEASHELL_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_SEASHELL_INT 0xFFF5EEFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_SIENNAPredefined color constants for common web colors. #define COLOR_SIENNA DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_SIENNA_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_SIENNA_INT 0xA0522DFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_SILVERPredefined color constants for common web colors. #define COLOR_SILVER DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_SILVER_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_SILVER_INT 0xC0C0C0FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_SKY_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_SKY_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_SKY_BLUE_INT 0x87CEEBFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_SLATE_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_SLATE_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_SLATE_BLUE_INT 0x6A5ACDFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GRAYPredefined color constants for common web colors. #define COLOR_SLATE_GRAY DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_SLATE_GRAY_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_SLATE_GRAY_INT 0x708090FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_SNOWPredefined color constants for common web colors. #define COLOR_SNOW DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_SNOW_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_SNOW_INT 0xFFFAFAFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GREENPredefined color constants for common web colors. #define COLOR_SPRING_GREEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_SPRING_GREEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_SPRING_GREEN_INT 0x00FF7FFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_BLUEPredefined color constants for common web colors. #define COLOR_STEEL_BLUE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_STEEL_BLUE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_STEEL_BLUE_INT 0x4682B4FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_TANPredefined color constants for common web colors. #define COLOR_TAN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_TAN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_TAN_INT 0xD2B48CFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_TEALPredefined color constants for common web colors. #define COLOR_TEAL DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_TEAL_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_TEAL_INT 0x008080FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_THISTLEPredefined color constants for common web colors. #define COLOR_THISTLE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_THISTLE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_THISTLE_INT 0xD8BFD8FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_TOMATOPredefined color constants for common web colors. #define COLOR_TOMATO DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_TOMATO_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_TOMATO_INT 0xFF6347FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_TRANSPARENTPredefined color constants for common web colors. #define COLOR_TRANSPARENT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_TRANSPARENT_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_TRANSPARENT_INT 0x00000000 DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_TURQUOISEPredefined color constants for common web colors. #define COLOR_TURQUOISE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_TURQUOISE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_TURQUOISE_INT 0x40E0D0FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_VIOLETPredefined color constants for common web colors. #define COLOR_VIOLET DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_VIOLET_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_VIOLET_INT 0xEE82EEFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GRAYPredefined color constants for common web colors. #define COLOR_WEB_GRAY DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_WEB_GRAY_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_WEB_GRAY_INT 0x808080FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GREENPredefined color constants for common web colors. #define COLOR_WEB_GREEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_WEB_GREEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_WEB_GREEN_INT 0x008000FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_MAROONPredefined color constants for common web colors. #define COLOR_WEB_MAROON DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_WEB_MAROON_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_WEB_MAROON_INT 0x800000FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_PURPLEPredefined color constants for common web colors. #define COLOR_WEB_PURPLE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_WEB_PURPLE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_WEB_PURPLE_INT 0x800080FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_WHEATPredefined color constants for common web colors. #define COLOR_WHEAT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_WHEAT_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_WHEAT_INT 0xF5DEB3FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_WHITEPredefined color constants for common web colors. #define COLOR_WHITE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_WHITE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_WHITE_INT 0xFFFFFFFF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_SMOKEPredefined color constants for common web colors. #define COLOR_WHITE_SMOKE DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_WHITE_SMOKE_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_WHITE_SMOKE_INT 0xF5F5F5FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also COLOR_YELLOWPredefined color constants for common web colors. #define COLOR_YELLOW DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_YELLOW_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_GREENPredefined color constants for common web colors. #define COLOR_YELLOW_GREEN DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_FLTPredefined color constants for common web colors. #define COLOR_YELLOW_GREEN_FLT DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_YELLOW_GREEN_INT 0x9ACD32FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_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_INTPredefined color constants for common web colors. #define COLOR_YELLOW_INT 0xFFFF00FF DiscussionWhen NO_COLOR_CONSTANTS is not defined, this header provides a comprehensive set of predefined color constants. Each color is defined in multiple formats: - COLOR_NAME: RGBA byte values {r, g, b, a} - COLOR_NAME_FLT: Floating-point RGBA values {r, g, b, a} - COLOR_NAME_INT: Packed 32-bit RGBA integer - color_name: _CONSTEXPR color_t struct instance All colors use standard web color values with alpha=255 (fully opaque) unless otherwise noted. See Also |