HTML color codes for pistachio green - hexadecimal + RGB

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

#93c572

códigos del color pistachio green

Complementary color of pistachio green:

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

#a472c5

Monochromatic scheme of the color pistachio green

#2c5d0f
#49792c
#669747
#84b564
#a3cd82
#c2dea2
#e0eec2
#ffffe3

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

HTML and CSS codes for the color pistachio green

formatcode
hex#93c572
rgbrgb(147,197,114)
hslhsl(97,42%,61%)
cmykcmyk(26, 0, 43, 23)
hsvhsv(97, 43%, 78%)

What is the pistachio green color in RGB format?

The pistachio green color in RGB format is composed of (147 in the red channel), (197 in the green channel), and (114 in the blue channel).

What is the pistachio green color in CMYK format?

It is composed of (26%) cyan, (0%) magenta, (43%) yellow, and (23%) black / key.

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

It is composed of (97°) hue, (42%) saturation, and (61%) lightness.

What is the pistachio green color in HSV format?

The pistachio green color in HSV format is composed of (97°) hue, (43%) saturation, and (78%) value.

Analogous scheme of the color pistachio green

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

#92c572
#72c57c
#bcc572

Triadic scheme of the color pistachio green

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

#93c572
#7293c5
#c57293

Tetradic scheme of the color pistachio green

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

#93c572
#72bcc5
#a472c5
#c57b72

Split complementary scheme of the color pistachio green

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

#93c572
#72c5b5
#c572b4

Tints of the color pistachio green

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

#93c572
#a9d18e
#bedcaa
#d4e8c7
#e9f3e3
#ffffff

Shades of the color pistachio green

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

#93c572
#769e5b
#587644
#3b4f2e
#1d2717
#000000

Check the contrast of the color pistachio green.

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

Change the text color.
Contrast ratio: 2.01

Contrast ratio test of the color pistachio green as a background

Change the background color
Contrast ratio: 7.79

Contrast ratio test of the color pistachio green as text.

How to implement the color pistachio green in HTML and CSS

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

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

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

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

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

<p style="color:#93c572;"> Color pistachio green as the text color.</p>
p {
color:#93c572 ;
}