Color: #CDCF9D

#CDCF9D Color Information

#CDCF9D is a light color. The closest websafe version is #CDCF9D. A complement of this color would be #9E9CCE, perceived brightness is 0.79, and the grayscale version is #B6B6B6.

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

In a RGB color space, #CDCF9D is composed of 80% red, 81% green and 62% blue. Whereas in a CMYK color space, it is composed of 1% cyan, 0% magenta, 24% yellow and 19% black.

In the Yxy color space, this color is represented as Y: 60.36, x: 0.3778, and y: 0.4111.

Color Code #CDCF9D

#CDCF9Drgb(205, 207, 157)
HEX
#CDCF9D
RGB
rgb(205, 207, 157)
HSL
hsl(62, 34%, 71%)
HSV
hsv(62, 24%, 81%)
CMYK
1%, 0%, 24%, 19%
XYZ
X: 55.47, Y: 60.36, Z: 30.99
Lab
L: 82.03, a: -6.70, b: 24.73
Name

Shades of Color #CDCF9D

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

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

#CDCF9Drgb(205, 207, 157)

About #CDCF9D Color Code

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

  • HEX: #CDCF9D
  • RGB: rgb(205, 207, 157)
  • HSL: hsl(62, 34%, 71%)
  • HSV: hsv(62, 24%, 81%)
  • CMYK: 100.00% cyan, 0.00% magenta, 24.00% yellow, 19.00% black
  • XYZ: 55.47, 60.36, 30.99
  • Yxy: 60.36, 0.3778, 0.4111
  • Hunter Lab: 82.03, -6.70, 24.73
  • CIE-Lab: 82.03, -6.70, 24.73

In the XYZ color space, this color is represented as X: 55.47, Y: 60.36, Z: 30.99. The Yxy representation further refines this as Y: 60.36, x: 0.3778, and y: 0.4111.

In the Hunter Lab color space, this color is represented as L: 82.03, a: -6.70, and b: 24.73. Similarly, in the CIE-Lab color space, it is represented as L: 82.03, a: -6.70, and b: 24.73.

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

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

Analogous Colors of #CDCF9D

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

Split Complementary Colors of #CDCF9D

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

Tetradic Colors of #CDCF9D

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

Monochromatic Colors of #CDCF9D

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

Complementary Color of #CDCF9D

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

/* Using HEX */
body {
  background-color: #cdcf9d;
}
/* Using RGB */
body {
  background-color: rgb(205, 207, 157);
}
/* Using RGB with opacity */
body {
  background-color: rgba(205, 207, 157, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(62, 34%, 71%);
}
/* Text color */
p {
  color: #cdcf9d;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #cdcf9d;
}
/* Border color */
.box {
  border: 4px solid #cdcf9d;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #cdcf9d;
}
Text Shadow Preview
/* Background with text */
div {
  background: #cdcf9d;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#CDCF9D
On Black Background
#CDCF9D
On White Background
#CDCF9D

HTML Examples of #CDCF9D

<!-- Using HEX -->
<div style="background-color: #cdcf9d; width: 100px; height: 100px;"></div>
<!-- Using RGB -->
<div style="background-color: rgb(205, 207, 157); width: 100px; height: 100px;"></div>
<!-- Using RGB with opacity -->
<div style="background-color: rgba(205, 207, 157, 0.5); width: 100px; height: 100px;"></div>
<!-- Using HSL -->
<div style="background-color: hsl(62, 34%, 71%); width: 100px; height: 100px;"></div>
<!-- Text color -->
<p style="color: #cdcf9d;">This is a text example.</p>
Text Preview
<!-- Box shadow -->
<div style="box-shadow: 4px 4px #cdcf9d; width: 100px; height: 100px;"></div>
<!-- Border color -->
<div style="border: 4px solid #cdcf9d; width: 100px; height: 100px;"></div>
<!-- Text shadow -->
<h1 style="color: #222; text-shadow: 2px 2px 0 #cdcf9d;">Text Shadow Preview</h1>
Text Shadow Preview
<!-- Background with text -->
<div style="background: #cdcf9d; color: #fff; padding: 16px; border-radius: 8px;">
  #CDCF9D
</div>
#CDCF9D
On Black Background
#CDCF9D
On White Background
#CDCF9D

Related Colors of #CDCF9D

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