Color: #C9EBB3

#C9EBB3 Color Information

#C9EBB3 is a light color. The closest websafe version is #C9EBB3. A complement of this color would be #D4B2EB, perceived brightness is 0.86, and the grayscale version is #CFCFCF.

In the HSL color space, this color has a hue angle of 96°,a saturation of 58%, and a lightness of 81%.The HSV representation shows a hue of 96°, a saturation of 24%, and a value of 92%.

In a RGB color space, #C9EBB3 is composed of 79% red, 92% green and 70% blue. Whereas in a CMYK color space, it is composed of 14% cyan, 0% magenta, 24% yellow and 8% black.

In the Yxy color space, this color is represented as Y: 75.28, x: 0.3545, and y: 0.4176.

Color Code #C9EBB3

#C9EBB3rgb(201, 235, 179)
HEX
#C9EBB3
RGB
rgb(201, 235, 179)
HSL
hsl(96, 58%, 81%)
HSV
hsv(96, 24%, 92%)
CMYK
14%, 0%, 24%, 8%
XYZ
X: 63.91, Y: 75.28, Z: 41.07
Lab
L: 89.53, a: -18.91, b: 23.44
Name

Shades of Color #C9EBB3

Shades are created by darkening the original color #C9EBB3 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 #C9EBB3

Tints are created by lightening the original color #C9EBB3 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.

#C9EBB3rgb(201, 235, 179)

About #C9EBB3 Color Code

In the HSL color space, this color has a hue angle of 96°, a saturation of 58%, and a lightness of 81%. The HSV representation shows a hue of 96°, a saturation of 24%, and a value of 92%.

  • HEX: #C9EBB3
  • RGB: rgb(201, 235, 179)
  • HSL: hsl(96, 58%, 81%)
  • HSV: hsv(96, 24%, 92%)
  • CMYK: 14.00% cyan, 0.00% magenta, 24.00% yellow, 8.00% black
  • XYZ: 63.91, 75.28, 41.07
  • Yxy: 75.28, 0.3545, 0.4176
  • Hunter Lab: 89.53, -18.91, 23.44
  • CIE-Lab: 89.53, -18.91, 23.44

In the XYZ color space, this color is represented as X: 63.91, Y: 75.28, Z: 41.07. The Yxy representation further refines this as Y: 75.28, x: 0.3545, and y: 0.4176.

In the Hunter Lab color space, this color is represented as L: 89.53, a: -18.91, and b: 23.44. Similarly, in the CIE-Lab color space, it is represented as L: 89.53, a: -18.91, and b: 23.44.

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 #C9EBB3

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

Analogous Colors of #C9EBB3

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

Split Complementary Colors of #C9EBB3

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

Tetradic Colors of #C9EBB3

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

Monochromatic Colors of #C9EBB3

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

Complementary Color of #C9EBB3

The complementary color of #C9EBB3 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 #C9EBB3

/* Using HEX */
body {
  background-color: #c9ebb3;
}
/* Using RGB */
body {
  background-color: rgb(201, 235, 179);
}
/* Using RGB with opacity */
body {
  background-color: rgba(201, 235, 179, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(96, 58%, 81%);
}
/* Text color */
p {
  color: #c9ebb3;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #c9ebb3;
}
/* Border color */
.box {
  border: 4px solid #c9ebb3;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #c9ebb3;
}
Text Shadow Preview
/* Background with text */
div {
  background: #c9ebb3;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#C9EBB3
On Black Background
#C9EBB3
On White Background
#C9EBB3

HTML Examples of #C9EBB3

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

Related Colors of #C9EBB3

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