Skip to contents

Get src alpha-blended into dst color with tint.

Usage

color_alpha_blend(dst, src, tint)

Arguments

dst

A color.

src

A color.

tint

A color.

Value

A color

Note

This function has been auto-generated from the following Raylib function definition:

Color ColorAlphaBlend(Color dst, Color src, Color tint);

See also

Other blend functions: begin_blend_mode(), end_blend_mode()

Other alpha functions: color_alpha()

Examples

color_alpha_blend("red", "red", "red")
#> color(r = 255, g = 0, b = 0, a = 255)