Color: #DAC4B4

#DAC4B4 Color Information

#DAC4B4 is a light color. The closest websafe version is #DAC4B4. A complement of this color would be #B4CADA, perceived brightness is 0.79, and the grayscale version is #C7C7C7.

In the HSL color space, this color has a hue angle of 25°,a saturation of 34%, and a lightness of 78%.The HSV representation shows a hue of 25°, a saturation of 17%, and a value of 85%.

In a RGB color space, #DAC4B4 is composed of 85% red, 77% green and 71% blue. Whereas in a CMYK color space, it is composed of 0% cyan, 10% magenta, 17% yellow and 15% black.

In the Yxy color space, this color is represented as Y: 57.94, x: 0.3760, and y: 0.3733.

Color Code #DAC4B4

#DAC4B4rgb(218, 196, 180)
HEX
#DAC4B4
RGB
rgb(218, 196, 180)
HSL
hsl(25, 34%, 78%)
HSV
hsv(25, 17%, 85%)
CMYK
0%, 10%, 17%, 15%
XYZ
X: 58.36, Y: 57.94, Z: 38.93
Lab
L: 80.70, a: 6.11, b: 11.04
Name

Shades of Color #DAC4B4

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

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

#DAC4B4rgb(218, 196, 180)

About #DAC4B4 Color Code

In the HSL color space, this color has a hue angle of 25°, a saturation of 34%, and a lightness of 78%. The HSV representation shows a hue of 25°, a saturation of 17%, and a value of 85%.

  • HEX: #DAC4B4
  • RGB: rgb(218, 196, 180)
  • HSL: hsl(25, 34%, 78%)
  • HSV: hsv(25, 17%, 85%)
  • CMYK: 0.00% cyan, 10.00% magenta, 17.00% yellow, 15.00% black
  • XYZ: 58.36, 57.94, 38.93
  • Yxy: 57.94, 0.3760, 0.3733
  • Hunter Lab: 80.70, 6.11, 11.04
  • CIE-Lab: 80.70, 6.11, 11.04

In the XYZ color space, this color is represented as X: 58.36, Y: 57.94, Z: 38.93. The Yxy representation further refines this as Y: 57.94, x: 0.3760, and y: 0.3733.

In the Hunter Lab color space, this color is represented as L: 80.70, a: 6.11, and b: 11.04. Similarly, in the CIE-Lab color space, it is represented as L: 80.70, a: 6.11, and b: 11.04.

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

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

Analogous Colors of #DAC4B4

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

Split Complementary Colors of #DAC4B4

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

Tetradic Colors of #DAC4B4

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

Monochromatic Colors of #DAC4B4

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

Complementary Color of #DAC4B4

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

/* Using HEX */
body {
  background-color: #dac4b4;
}
/* Using RGB */
body {
  background-color: rgb(218, 196, 180);
}
/* Using RGB with opacity */
body {
  background-color: rgba(218, 196, 180, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(25, 34%, 78%);
}
/* Text color */
p {
  color: #dac4b4;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #dac4b4;
}
/* Border color */
.box {
  border: 4px solid #dac4b4;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #dac4b4;
}
Text Shadow Preview
/* Background with text */
div {
  background: #dac4b4;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#DAC4B4
On Black Background
#DAC4B4
On White Background
#DAC4B4

HTML Examples of #DAC4B4

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

Related Colors of #DAC4B4

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