Color: #C0EEAF

#C0EEAF Color Information

#C0EEAF is a light color. The closest websafe version is #C0EEAF. A complement of this color would be #DDAFEE, perceived brightness is 0.85, and the grayscale version is #CFCFCF.

In the HSL color space, this color has a hue angle of 104°,a saturation of 65%, and a lightness of 81%.The HSV representation shows a hue of 104°, a saturation of 26%, and a value of 93%.

In a RGB color space, #C0EEAF is composed of 75% red, 93% green and 69% blue. Whereas in a CMYK color space, it is composed of 19% cyan, 0% magenta, 26% yellow and 7% black.

In the Yxy color space, this color is represented as Y: 75.62, x: 0.3499, and y: 0.4265.

Color Code #C0EEAF

#C0EEAFrgb(192, 238, 175)
HEX
#C0EEAF
RGB
rgb(192, 238, 175)
HSL
hsl(104, 65%, 81%)
HSV
hsv(104, 26%, 93%)
CMYK
19%, 0%, 26%, 7%
XYZ
X: 62.04, Y: 75.62, Z: 39.65
Lab
L: 89.68, a: -23.87, b: 25.56
Name

Shades of Color #C0EEAF

Shades are created by darkening the original color #C0EEAF in equal steps from 0% to 90%. These shades are perfect for creating depth and contrast in your designs. Use them to add visual hierarchy or highlight specific elements in your projects.

Tints of Color #C0EEAF

Tints are created by lightening the original color #C0EEAF in equal steps from 0% to 90%, ending with pure white. These tints are ideal for creating soft backgrounds, subtle highlights, or cohesive UI elements that complement your designs.

#C0EEAFrgb(192, 238, 175)

About #C0EEAF Color Code

In the HSL color space, this color has a hue angle of 104°, a saturation of 65%, and a lightness of 81%. The HSV representation shows a hue of 104°, a saturation of 26%, and a value of 93%.

  • HEX: #C0EEAF
  • RGB: rgb(192, 238, 175)
  • HSL: hsl(104, 65%, 81%)
  • HSV: hsv(104, 26%, 93%)
  • CMYK: 19.00% cyan, 0.00% magenta, 26.00% yellow, 7.00% black
  • XYZ: 62.04, 75.62, 39.65
  • Yxy: 75.62, 0.3499, 0.4265
  • Hunter Lab: 89.68, -23.87, 25.56
  • CIE-Lab: 89.68, -23.87, 25.56

In the XYZ color space, this color is represented as X: 62.04, Y: 75.62, Z: 39.65. The Yxy representation further refines this as Y: 75.62, x: 0.3499, and y: 0.4265.

In the Hunter Lab color space, this color is represented as L: 89.68, a: -23.87, and b: 25.56. Similarly, in the CIE-Lab color space, it is represented as L: 89.68, a: -23.87, and b: 25.56.

Use these color codes in your CSS, design tools, or anywhere you need to specify a color. You can also explore its shades and tints for more creative options.

Triadic Colors of #C0EEAF

Triadic colors are three colors evenly spaced around the color wheel, including #C0EEAF. They create vibrant and balanced color schemes, perfect for designs that need contrast and harmony.

Analogous Colors of #C0EEAF

Analogous colors are adjacent to #C0EEAF on the color wheel. They create harmonious and visually pleasing designs, ideal for projects that need a cohesive look.

Split Complementary Colors of #C0EEAF

Split complementary colors are two colors adjacent to the complementary color of #C0EEAF. They create a balanced and visually appealing color scheme.

Tetradic Colors of #C0EEAF

Tetradic colors form a rectangle on the color wheel, including #C0EEAF. They provide vibrant and diverse color schemes for creative designs.

Monochromatic Colors of #C0EEAF

Monochromatic colors are variations of #C0EEAF, including its shades, tints, and tones. They create elegant and minimalistic designs with a unified color theme.

Complementary Color of #C0EEAF

The complementary color of #C0EEAF is opposite it on the color wheel. Complementary colors provide strong contrast and are ideal for designs that need visual impact and attention.

CSS Examples of #C0EEAF

/* Using HEX */
body {
  background-color: #c0eeaf;
}
/* Using RGB */
body {
  background-color: rgb(192, 238, 175);
}
/* Using RGB with opacity */
body {
  background-color: rgba(192, 238, 175, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(104, 65%, 81%);
}
/* Text color */
p {
  color: #c0eeaf;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #c0eeaf;
}
/* Border color */
.box {
  border: 4px solid #c0eeaf;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #c0eeaf;
}
Text Shadow Preview
/* Background with text */
div {
  background: #c0eeaf;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#C0EEAF
On Black Background
#C0EEAF
On White Background
#C0EEAF

HTML Examples of #C0EEAF

<!-- Using HEX -->
<div style="background-color: #c0eeaf; width: 100px; height: 100px;"></div>
<!-- Using RGB -->
<div style="background-color: rgb(192, 238, 175); width: 100px; height: 100px;"></div>
<!-- Using RGB with opacity -->
<div style="background-color: rgba(192, 238, 175, 0.5); width: 100px; height: 100px;"></div>
<!-- Using HSL -->
<div style="background-color: hsl(104, 65%, 81%); width: 100px; height: 100px;"></div>
<!-- Text color -->
<p style="color: #c0eeaf;">This is a text example.</p>
Text Preview
<!-- Box shadow -->
<div style="box-shadow: 4px 4px #c0eeaf; width: 100px; height: 100px;"></div>
<!-- Border color -->
<div style="border: 4px solid #c0eeaf; width: 100px; height: 100px;"></div>
<!-- Text shadow -->
<h1 style="color: #222; text-shadow: 2px 2px 0 #c0eeaf;">Text Shadow Preview</h1>
Text Shadow Preview
<!-- Background with text -->
<div style="background: #c0eeaf; color: #fff; padding: 16px; border-radius: 8px;">
  #C0EEAF
</div>
#C0EEAF
On Black Background
#C0EEAF
On White Background
#C0EEAF

Related Colors of #C0EEAF

These colors are similar to #C0EEAF, with slight variations in hue. Use them to create harmonious designs or explore alternative shades for your projects.