HTML color codes for olive green - hexadecimal + RGB

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

#86895d

códigos del color olive green

Complementary color of olive green:

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

#605d89

Monochromatic scheme of the color olive green

#272b00
#40441c
#5b5f35
#777b4f
#96986c
#b5b88a
#d6d9a9
#f8fbca

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

HTML and CSS codes for the color olive green

formatcode
hex#86895d
rgbrgb(134,137,93)
hslhsl(65,20%,46%)
cmykcmyk(3, 0, 33, 47)
hsvhsv(65, 33%, 54%)

What is the olive green color in RGB format?

The olive green color in RGB format is composed of (134 in the red channel), (137 in the green channel), and (93 in the blue channel).

What is the olive green color in CMYK format?

It is composed of (3%) cyan, (0%) magenta, (33%) yellow, and (47%) black / key.

What is the composition of the olive green color in HSL?

It is composed of (65°) hue, (20%) saturation, and (46%) lightness.

What is the olive green color in HSV format?

The olive green color in HSV format is composed of (65°) hue, (33%) saturation, and (54%) value.

Analogous scheme of the color olive green

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

#898d5e
#718d5e
#8d795e

Triadic scheme of the color olive green

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

#86895d
#5d8689
#895d86

Tetradic scheme of the color olive green

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

#86895d
#5d8976
#605d89
#895d70

Split complementary scheme of the color olive green

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

#86895d
#5d8969
#7a5d89

Tints of the color olive green

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

#86895d
#9ea17d
#b6b89e
#cfd0be
#e7e7df
#ffffff

Shades of the color olive green

These shades are obtained from the base color olive green up to reaching black.

#86895d
#6b6e4a
#505238
#363725
#1b1b13
#000000

Check the contrast of the color olive green.

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

Change the text color.
Contrast ratio: 3.65

Contrast ratio test of the color olive green as a background

Change the background color
Contrast ratio: 4.28

Contrast ratio test of the color olive green as text.

How to implement the color olive green in HTML and CSS

Here are examples of code to use the olive green 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 olive green in HTML - CSS.

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

<div style="background:#86895d;"> Color olive green as the background of a div.</div>
/* Color olive green as the background of the body tag with CSS. */
body {
background: #86895d;
}

To set the text color olive green in HTML - CSS.

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

<p style="color:#86895d;"> Color olive green as the text color.</p>
p {
color:#86895d ;
}