Up to date

This page is up to date for Godot 4.0. If you still find outdated information, please open an issue.

Color

Color built-in type, in RGBA format.

Description

A color represented in RGBA format by red (r), green (g), blue (b), and alpha (a) components. Each component is a 16-bit floating-point value, usually ranging from 0 to 1. Some properties (such as CanvasItem.modulate) may support values greater than 1, for overbright or High Dynamic Range colors. If you want to supply values in a range of 0 to 255, you should use @GDScript.Color8.

Colors can also be created by name from a set of standardized colors, through the String constructor, from_string, or by directly fetching the color constants documented here. The standardized color set is based on the X11 color names, with the addition of TRANSPARENT.

Note: In a boolean context, a Color will evaluate to false if it's equal to Color(0, 0, 0, 1) (opaque black). Otherwise, a Color will always evaluate to true.

Color constants cheatsheet

Tutorials

Properties

float

a

1.0

int

a8

255

float

b

0.0

int

b8

0

float

g

0.0

int

g8

0

float

h

0.0

float

r

0.0

int

r8

0

float

s

0.0

float

v

0.0

Constructors

Color

Color ( )

Color

Color ( Color from, float alpha )

Color

Color ( Color from )

Color

Color ( String code )

Color

Color ( String code, float alpha )

Color

Color ( float r, float g, float b )

Color

Color ( float r, float g, float b, float a )

Methods

Color

blend ( Color over ) const

Color

clamp ( Color min=Color(0, 0, 0, 0), Color max=Color(1, 1, 1, 1) ) const

Color

darkened ( float amount ) const

Color

from_hsv ( float h, float s, float v, float alpha=1.0 ) static

Color

from_ok_hsl ( float h, float s, float l, float alpha=1.0 ) static

Color

from_rgbe9995 ( int rgbe ) static

Color

from_string ( String str, Color default ) static

float

get_luminance ( ) const

Color

hex ( int hex ) static

Color

hex64 ( int hex ) static

Color

html ( String rgba ) static

bool

html_is_valid ( String color ) static

Color

inverted ( ) const

bool

is_equal_approx ( Color to ) const

Color

lerp ( Color to, float weight ) const

Color

lightened ( float amount ) const

Color

linear_to_srgb ( ) const

Color

srgb_to_linear ( ) const

int

to_abgr32 ( ) const

int

to_abgr64 ( ) const

int

to_argb32 ( ) const

int

to_argb64 ( ) const

String

to_html ( bool with_alpha=true ) const

int

to_rgba32 ( ) const

int

to_rgba64 ( ) const

Operators

bool

operator != ( Color right )

Color

operator * ( Color right )

Color

operator * ( float right )

Color

operator * ( int right )

Color

operator + ( Color right )

Color

operator - ( Color right )

Color

operator / ( Color right )

Color

operator / ( float right )

Color

operator / ( int right )

bool

operator == ( Color right )

float

operator [] ( int index )

Color

operator unary+ ( )

Color

operator unary- ( )


Constants

ALICE_BLUE = Color(0.941176, 0.972549, 1, 1)

Alice blue color.

ANTIQUE_WHITE = Color(0.980392, 0.921569, 0.843137, 1)

Antique white color.

AQUA = Color(0, 1, 1, 1)

Aqua color.

AQUAMARINE = Color(0.498039, 1, 0.831373, 1)

Aquamarine color.

AZURE = Color(0.941176, 1, 1, 1)

Azure color.

BEIGE = Color(0.960784, 0.960784, 0.862745, 1)

Beige color.

BISQUE = Color(1, 0.894118, 0.768627, 1)

Bisque color.

BLACK = Color(0, 0, 0, 1)

Black color. In GDScript, this is the default value of any color.

BLANCHED_ALMOND = Color(1, 0.921569, 0.803922, 1)

Blanched almond color.

BLUE = Color(0, 0, 1, 1)

Blue color.

BLUE_VIOLET = Color(0.541176, 0.168627, 0.886275, 1)

Blue violet color.

BROWN = Color(0.647059, 0.164706, 0.164706, 1)

Brown color.

BURLYWOOD = Color(0.870588, 0.721569, 0.529412, 1)

Burlywood color.

CADET_BLUE = Color(0.372549, 0.619608, 0.627451, 1)

Cadet blue color.

CHARTREUSE = Color(0.498039, 1, 0, 1)

Chartreuse color.

CHOCOLATE = Color(0.823529, 0.411765, 0.117647, 1)

Chocolate color.

CORAL = Color(1, 0.498039, 0.313726, 1)

Coral color.

CORNFLOWER_BLUE = Color(0.392157, 0.584314, 0.929412, 1)

Cornflower blue color.

CORNSILK = Color(1, 0.972549, 0.862745, 1)

Cornsilk color.

CRIMSON = Color(0.862745, 0.0784314, 0.235294, 1)

Crimson color.

CYAN = Color(0, 1, 1, 1)

Cyan color.

DARK_BLUE = Color(0, 0, 0.545098, 1)

Dark blue color.

DARK_CYAN = Color(0, 0.545098, 0.545098, 1)

Dark cyan color.

DARK_GOLDENROD = Color(0.721569, 0.52549, 0.0431373, 1)

Dark goldenrod color.

DARK_GRAY = Color(0.662745, 0.662745, 0.662745, 1)

Dark gray color.

DARK_GREEN = Color(0, 0.392157, 0, 1)

Dark green color.

DARK_KHAKI = Color(0.741176, 0.717647, 0.419608, 1)

Dark khaki color.

DARK_MAGENTA = Color(0.545098, 0, 0.545098, 1)

Dark magenta color.

DARK_OLIVE_GREEN = Color(0.333333, 0.419608, 0.184314, 1)

Dark olive green color.

DARK_ORANGE = Color(1, 0.54902, 0, 1)

Dark orange color.

DARK_ORCHID = Color(0.6, 0.196078, 0.8, 1)

Dark orchid color.

DARK_RED = Color(0.545098, 0, 0, 1)

Dark red color.

DARK_SALMON = Color(0.913725, 0.588235, 0.478431, 1)

Dark salmon color.

DARK_SEA_GREEN = Color(0.560784, 0.737255, 0.560784, 1)

Dark sea green color.

DARK_SLATE_BLUE = Color(0.282353, 0.239216, 0.545098, 1)

Dark slate blue color.

DARK_SLATE_GRAY = Color(0.184314, 0.309804, 0.309804, 1)

Dark slate gray color.

DARK_TURQUOISE = Color(0, 0.807843, 0.819608, 1)

Dark turquoise color.

DARK_VIOLET = Color(0.580392, 0, 0.827451, 1)

Dark violet color.

DEEP_PINK = Color(1, 0.0784314, 0.576471, 1)

Deep pink color.

DEEP_SKY_BLUE = Color(0, 0.74902, 1, 1)

Deep sky blue color.

DIM_GRAY = Color(0.411765, 0.411765, 0.411765, 1)

Dim gray color.

DODGER_BLUE = Color(0.117647, 0.564706, 1, 1)

Dodger blue color.

FIREBRICK = Color(0.698039, 0.133333, 0.133333, 1)

Firebrick color.

FLORAL_WHITE = Color(1, 0.980392, 0.941176, 1)

Floral white color.

FOREST_GREEN = Color(0.133333, 0.545098, 0.133333, 1)

Forest green color.

FUCHSIA = Color(1, 0, 1, 1)

Fuchsia color.

GAINSBORO = Color(0.862745, 0.862745, 0.862745, 1)

Gainsboro color.

GHOST_WHITE = Color(0.972549, 0.972549, 1, 1)

Ghost white color.

GOLD = Color(1, 0.843137, 0, 1)

Gold color.

GOLDENROD = Color(0.854902, 0.647059, 0.12549, 1)

Goldenrod color.

GRAY = Color(0.745098, 0.745098, 0.745098, 1)

Gray color.

GREEN = Color(0, 1, 0, 1)

Green color.

GREEN_YELLOW = Color(0.678431, 1, 0.184314, 1)

Green yellow color.

HONEYDEW = Color(0.941176, 1, 0.941176, 1)

Honeydew color.

HOT_PINK = Color(1, 0.411765, 0.705882, 1)

Hot pink color.

INDIAN_RED = Color(0.803922, 0.360784, 0.360784, 1)

Indian red color.

INDIGO = Color(0.294118, 0, 0.509804, 1)

Indigo color.

IVORY = Color(1, 1, 0.941176, 1)

Ivory color.

KHAKI = Color(0.941176, 0.901961, 0.54902, 1)

Khaki color.

LAVENDER = Color(0.901961, 0.901961, 0.980392, 1)

Lavender color.

LAVENDER_BLUSH = Color(1, 0.941176, 0.960784, 1)

Lavender blush color.

LAWN_GREEN = Color(0.486275, 0.988235, 0, 1)

Lawn green color.

LEMON_CHIFFON = Color(1, 0.980392, 0.803922, 1)

Lemon chiffon color.

LIGHT_BLUE = Color(0.678431, 0.847059, 0.901961, 1)

Light blue color.

LIGHT_CORAL = Color(0.941176, 0.501961, 0.501961, 1)

Light coral color.

LIGHT_CYAN = Color(0.878431, 1, 1, 1)

Light cyan color.

LIGHT_GOLDENROD = Color(0.980392, 0.980392, 0.823529, 1)

Light goldenrod color.

LIGHT_GRAY = Color(0.827451, 0.827451, 0.827451, 1)

Light gray color.

LIGHT_GREEN = Color(0.564706, 0.933333, 0.564706, 1)

Light green color.

LIGHT_PINK = Color(1, 0.713726, 0.756863, 1)

Light pink color.

LIGHT_SALMON = Color(1, 0.627451, 0.478431, 1)

Light salmon color.

LIGHT_SEA_GREEN = Color(0.12549, 0.698039, 0.666667, 1)

Light sea green color.

LIGHT_SKY_BLUE = Color(0.529412, 0.807843, 0.980392, 1)

Light sky blue color.

LIGHT_SLATE_GRAY = Color(0.466667, 0.533333, 0.6, 1)

Light slate gray color.

LIGHT_STEEL_BLUE = Color(0.690196, 0.768627, 0.870588, 1)

Light steel blue color.

LIGHT_YELLOW = Color(1, 1, 0.878431, 1)

Light yellow color.

LIME = Color(0, 1, 0, 1)

Lime color.

LIME_GREEN = Color(0.196078, 0.803922, 0.196078, 1)

Lime green color.

LINEN = Color(0.980392, 0.941176, 0.901961, 1)

Linen color.

MAGENTA = Color(1, 0, 1, 1)

Magenta color.

MAROON = Color(0.690196, 0.188235, 0.376471, 1)

Maroon color.

MEDIUM_AQUAMARINE = Color(0.4, 0.803922, 0.666667, 1)

Medium aquamarine color.

MEDIUM_BLUE = Color(0, 0, 0.803922, 1)

Medium blue color.

MEDIUM_ORCHID = Color(0.729412, 0.333333, 0.827451, 1)

Medium orchid color.

MEDIUM_PURPLE = Color(0.576471, 0.439216, 0.858824, 1)

Medium purple color.

MEDIUM_SEA_GREEN = Color(0.235294, 0.701961, 0.443137, 1)

Medium sea green color.

MEDIUM_SLATE_BLUE = Color(0.482353, 0.407843, 0.933333, 1)

Medium slate blue color.

MEDIUM_SPRING_GREEN = Color(0, 0.980392, 0.603922, 1)

Medium spring green color.

MEDIUM_TURQUOISE = Color(0.282353, 0.819608, 0.8, 1)

Medium turquoise color.

MEDIUM_VIOLET_RED = Color(0.780392, 0.0823529, 0.521569, 1)

Medium violet red color.

MIDNIGHT_BLUE = Color(0.0980392, 0.0980392, 0.439216, 1)

Midnight blue color.

MINT_CREAM = Color(0.960784, 1, 0.980392, 1)

Mint cream color.

MISTY_ROSE = Color(1, 0.894118, 0.882353, 1)

Misty rose color.

MOCCASIN = Color(1, 0.894118, 0.709804, 1)

Moccasin color.

NAVAJO_WHITE = Color(1, 0.870588, 0.678431, 1)

Navajo white color.

NAVY_BLUE = Color(0, 0, 0.501961, 1)

Navy blue color.

OLD_LACE = Color(0.992157, 0.960784, 0.901961, 1)

Old lace color.

OLIVE = Color(0.501961, 0.501961, 0, 1)

Olive color.

OLIVE_DRAB = Color(0.419608, 0.556863, 0.137255, 1)

Olive drab color.

ORANGE = Color(1, 0.647059, 0, 1)

Orange color.

ORANGE_RED = Color(1, 0.270588, 0, 1)

Orange red color.

ORCHID = Color(0.854902, 0.439216, 0.839216, 1)

Orchid color.

PALE_GOLDENROD = Color(0.933333, 0.909804, 0.666667, 1)

Pale goldenrod color.

PALE_GREEN = Color(0.596078, 0.984314, 0.596078, 1)

Pale green color.

PALE_TURQUOISE = Color(0.686275, 0.933333, 0.933333, 1)

Pale turquoise color.

PALE_VIOLET_RED = Color(0.858824, 0.439216, 0.576471, 1)

Pale violet red color.

PAPAYA_WHIP = Color(1, 0.937255, 0.835294, 1)

Papaya whip color.

PEACH_PUFF = Color(1, 0.854902, 0.72549, 1)

Peach puff color.

PERU = Color(0.803922, 0.521569, 0.247059, 1)

Peru color.

PINK = Color(1, 0.752941, 0.796078, 1)

Pink color.

PLUM = Color(0.866667, 0.627451, 0.866667, 1)

Plum color.

POWDER_BLUE = Color(0.690196, 0.878431, 0.901961, 1)

Powder blue color.

PURPLE = Color(0.627451, 0.12549, 0.941176, 1)

Purple color.

REBECCA_PURPLE = Color(0.4, 0.2, 0.6, 1)

Rebecca purple color.

RED = Color(1, 0, 0, 1)

Red color.

ROSY_BROWN = Color(0.737255, 0.560784, 0.560784, 1)

Rosy brown color.

ROYAL_BLUE = Color(0.254902, 0.411765, 0.882353, 1)

Royal blue color.

SADDLE_BROWN = Color(0.545098, 0.270588, 0.0745098, 1)

Saddle brown color.

SALMON = Color(0.980392, 0.501961, 0.447059, 1)

Salmon color.

SANDY_BROWN = Color(0.956863, 0.643137, 0.376471, 1)

Sandy brown color.

SEA_GREEN = Color(0.180392, 0.545098, 0.341176, 1)

Sea green color.

SEASHELL = Color(1, 0.960784, 0.933333, 1)

Seashell color.

SIENNA = Color(0.627451, 0.321569, 0.176471, 1)

Sienna color.

SILVER = Color(0.752941, 0.752941, 0.752941, 1)

Silver color.

SKY_BLUE = Color(0.529412, 0.807843, 0.921569, 1)

Sky blue color.

SLATE_BLUE = Color(0.415686, 0.352941, 0.803922, 1)

Slate blue color.

SLATE_GRAY = Color(0.439216, 0.501961, 0.564706, 1)

Slate gray color.

SNOW = Color(1, 0.980392, 0.980392, 1)

Snow color.

SPRING_GREEN = Color(0, 1, 0.498039, 1)

Spring green color.

STEEL_BLUE = Color(0.27451, 0.509804, 0.705882, 1)

Steel blue color.

TAN = Color(0.823529, 0.705882, 0.54902, 1)

Tan color.

TEAL = Color(0, 0.501961, 0.501961, 1)

Teal color.

THISTLE = Color(0.847059, 0.74902, 0.847059, 1)

Thistle color.

TOMATO = Color(1, 0.388235, 0.278431, 1)

Tomato color.

TRANSPARENT = Color(1, 1, 1, 0)

Transparent color (white with zero alpha).

TURQUOISE = Color(0.25098, 0.878431, 0.815686, 1)

Turquoise color.

VIOLET = Color(0.933333, 0.509804, 0.933333, 1)

Violet color.

WEB_GRAY = Color(0.501961, 0.501961, 0.501961, 1)

Web gray color.

WEB_GREEN = Color(0, 0.501961, 0, 1)

Web green color.

WEB_MAROON = Color(0.501961, 0, 0, 1)

Web maroon color.

WEB_PURPLE = Color(0.501961, 0, 0.501961, 1)

Web purple color.

WHEAT = Color(0.960784, 0.870588, 0.701961, 1)

Wheat color.

WHITE = Color(1, 1, 1, 1)

White color.

WHITE_SMOKE = Color(0.960784, 0.960784, 0.960784, 1)

White smoke color.

YELLOW = Color(1, 1, 0, 1)

Yellow color.

YELLOW_GREEN = Color(0.603922, 0.803922, 0.196078, 1)

Yellow green color.


Property Descriptions

float a = 1.0

The color's alpha component, typically on the range of 0 to 1. A value of 0 means that the color is fully transparent. A value of 1 means that the color is fully opaque.


int a8 = 255

Wrapper for a that uses the range 0 to 255, instead of 0 to 1.


float b = 0.0

The color's blue component, typically on the range of 0 to 1.


int b8 = 0

Wrapper for b that uses the range 0 to 255, instead of 0 to 1.


float g = 0.0

The color's green component, typically on the range of 0 to 1.


int g8 = 0

Wrapper for g that uses the range 0 to 255, instead of 0 to 1.


float h = 0.0

The HSV hue of this color, on the range 0 to 1.


float r = 0.0

The color's red component, typically on the range of 0 to 1.


int r8 = 0

Wrapper for r that uses the range 0 to 255, instead of 0 to 1.


float s = 0.0

The HSV saturation of this color, on the range 0 to 1.


float v = 0.0

The HSV value (brightness) of this color, on the range 0 to 1.


Constructor Descriptions

Color Color ( )

Constructs a default Color from opaque black. This is the same as BLACK.

Note: in C#, constructs an empty color with all of its components set to 0.0 (transparent black).


Color Color ( Color from, float alpha )

Constructs a Color from the existing color, with a set to the given alpha value.

var red = Color(Color.RED, 0.2) # 20% opaque red.

Color Color ( Color from )

Constructs a Color as a copy of the given Color.


Color Color ( String code )

Constructs a Color either from an HTML color code or from a standardized color name. The supported color names are the same as the constants.


Color Color ( String code, float alpha )

Constructs a Color either from an HTML color code or from a standardized color name, with alpha on the range of 0.0 to 1.0. The supported color names are the same as the constants.


Color Color ( float r, float g, float b )

Constructs a Color from RGB values, typically between 0.0 and 1.0. a is set to 1.0.

var color = Color(0.2, 1.0, 0.7) # Similar to `Color8(51, 255, 178, 255)`

Color Color ( float r, float g, float b, float a )