HTML color codes for light orange - hexadecimal + RGB

Discover all HTML codes for the color light orange - hexadecimal, rgb, hsl, hsv, and cmyk, as well as different combinations, schemes, temperatures, hues, and types of light orange color.

#ffb552

códigos del color light orange

Complementary color of light orange:

The complementary color of a color is the opposite of it on the color wheel (chromatic circle)

#529cff

Monochromatic scheme of the color light orange

#885000
#a96b1a
#cb8830
#eda647
#ffc062
#ffd583
#ffeaa3
#ffffc3

This scheme is based on the color light orange and is composed of different hues, tones, and shades, both dark and light.

HTML and CSS codes for the color light orange

formatcode
hex#ffb552
rgbrgb(255,181,82)
hslhsl(35,100%,67%)
cmykcmyk(0, 30, 68, 0)
hsvhsv(35, 68%, 100%)

What is the light orange color in RGB format?

The light orange color in RGB format is composed of (255 in the red channel), (181 in the green channel), and (82 in the blue channel).

What is the light orange color in CMYK format?

It is composed of (0%) cyan, (30%) magenta, (68%) yellow, and (0%) black / key.

What is the composition of the light orange color in HSL?

It is composed of (35°) hue, (100%) saturation, and (67%) lightness.

What is the light orange color in HSV format?

The light orange color in HSV format is composed of (35°) hue, (68%) saturation, and (100%) value.

Analogous scheme of the color light orange

Analogous colors are obtained from the two closest colors within the color wheel.

#ffb957
#f1ff57
#ff6557

Triadic scheme of the color light orange

The triadic scheme is obtained from 3 colors equally spaced from each other within the color wheel

#ffb552
#52ffb5
#b552ff

Tetradic scheme of the color light orange

This color scheme is obtained by using two pairs of opposing colors on the color wheel in a rectangular shape.

#ffb552
#52ff5e
#529cff
#ff52f2

Split complementary scheme of the color light orange

This color scheme is obtained by using two pairs of opposing colors on the color wheel in a rectangular shape.

#ffb552
#79ff52
#7052ff

Tints of the color light orange

Tints are obtained from the base color light orange up to reaching white, finding in between shades of pastel colors.

#ffb552
#ffc475
#ffd397
#ffe1ba
#fff0dc
#ffffff

Shades of the color light orange

These shades are obtained from the base color light orange up to reaching black.

#ffb552
#cc9142
#996d31
#664821
#332410
#000000

Check the contrast of the color light orange.

You can now validate the contrast relationship of the color light orange, whether using it as a background color or as a text color.

Change the text color.
Contrast ratio: 1.75

Contrast ratio test of the color light orange as a background

Change the background color
Contrast ratio: 8.91

Contrast ratio test of the color light orange as text.

How to implement the color light orange in HTML and CSS

Here are examples of code to use the light orange on your web page. Remember that you can implement the color in HTML using color codes such as hexadecimal, RGB, or HSL, and also directly with the color name written in English (as long as it is natively supported by HTML).

Background color light orange in HTML - CSS.

To set the background color, you can use inline styles or apply them in a CSS stylesheet

<div style="background:#ffb552;"> Color light orange as the background of a div.</div>
/* Color light orange as the background of the body tag with CSS. */
body {
background: #ffb552;
}

To set the text color light orange in HTML - CSS.

To set the text color, you can use inline styles or apply them in a CSS stylesheet.

<p style="color:#ffb552;"> Color light orange as the text color.</p>
p {
color:#ffb552 ;
}