Color: #CDBCBF

#CDBCBF Color Information

#CDBCBF is a light color. The closest websafe version is #CDBCBF. A complement of this color would be #BCCDCA, perceived brightness is 0.76, and the grayscale version is #C5C5C5.

In the HSL color space, this color has a hue angle of 349°,a saturation of 15%, and a lightness of 77%.The HSV representation shows a hue of 349°, a saturation of 8%, and a value of 80%.

In a RGB color space, #CDBCBF is composed of 80% red, 74% green and 75% blue. Whereas in a CMYK color space, it is composed of 0% cyan, 8% magenta, 7% yellow and 20% black.

In the Yxy color space, this color is represented as Y: 52.79, x: 0.3582, and y: 0.3539.

Color Code #CDBCBF

#CDBCBFrgb(205, 188, 191)
HEX
#CDBCBF
RGB
rgb(205, 188, 191)
HSL
hsl(349, 15%, 77%)
HSV
hsv(349, 8%, 80%)
CMYK
0%, 8%, 7%, 20%
XYZ
X: 53.44, Y: 52.79, Z: 42.94
Lab
L: 77.75, a: 6.61, b: 0.77
Name

Shades of Color #CDBCBF

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

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

#CDBCBFrgb(205, 188, 191)

About #CDBCBF Color Code

In the HSL color space, this color has a hue angle of 349°, a saturation of 15%, and a lightness of 77%. The HSV representation shows a hue of 349°, a saturation of 8%, and a value of 80%.

  • HEX: #CDBCBF
  • RGB: rgb(205, 188, 191)
  • HSL: hsl(349, 15%, 77%)
  • HSV: hsv(349, 8%, 80%)
  • CMYK: 0.00% cyan, 8.00% magenta, 7.00% yellow, 20.00% black
  • XYZ: 53.44, 52.79, 42.94
  • Yxy: 52.79, 0.3582, 0.3539
  • Hunter Lab: 77.75, 6.61, 0.77
  • CIE-Lab: 77.75, 6.61, 0.77

In the XYZ color space, this color is represented as X: 53.44, Y: 52.79, Z: 42.94. The Yxy representation further refines this as Y: 52.79, x: 0.3582, and y: 0.3539.

In the Hunter Lab color space, this color is represented as L: 77.75, a: 6.61, and b: 0.77. Similarly, in the CIE-Lab color space, it is represented as L: 77.75, a: 6.61, and b: 0.77.

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

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

Analogous Colors of #CDBCBF

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

Split Complementary Colors of #CDBCBF

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

Tetradic Colors of #CDBCBF

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

Monochromatic Colors of #CDBCBF

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

Complementary Color of #CDBCBF

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

/* Using HEX */
body {
  background-color: #cdbcbf;
}
/* Using RGB */
body {
  background-color: rgb(205, 188, 191);
}
/* Using RGB with opacity */
body {
  background-color: rgba(205, 188, 191, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(349, 15%, 77%);
}
/* Text color */
p {
  color: #cdbcbf;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #cdbcbf;
}
/* Border color */
.box {
  border: 4px solid #cdbcbf;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #cdbcbf;
}
Text Shadow Preview
/* Background with text */
div {
  background: #cdbcbf;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#CDBCBF
On Black Background
#CDBCBF
On White Background
#CDBCBF

HTML Examples of #CDBCBF

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

Related Colors of #CDBCBF

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