Hex #ddd6ce Color

#ddd6ce
equivalent to

RGB

(221, 214, 206)

Details of #ddd6ce

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
221
65.0059
0.09
0.00
85.9672
67.9215
32°
82.4145
214
67.9215
0.18
0.03
1.0156
0.3234
-3.4299
206
68.0765
0.84
0.07   0.13
4.7873
0.3379
87°
8.7318

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11011101
335
221
DD
Green
11010110
326
214
D6
Blue
11001110
316
206
CE

RGB in % of #ddd6ce

%34.48
%33.39
%32.14

CMYK in % of #ddd6ce

%0
%3
%7
%13

Triads of color #ddd6ce

#ddd6ce #d6cedd #ceddce

Similar Colors to #ddd6ce

#ddd6ce #ddcfce #ddddce

Preview Color #ddd6ce on black ground

#ddd6ce is very interesting for text.

Preview Color #ddd6ce on white ground

#ddd6ce is very interesting for text.

CSS Codes #ddd6ce color

.mybgcolor {background-color:#ddd6ce; }
.myforecolor {color:#ddd6ce; }
.mybordercolor {border:3px solid #ddd6ce; }

Text Font Color #ddd6ce

<p style="color:#ddd6ce">Text here</p>

This sample text font color is #ddd6ce
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.


Background Color #ddd6ce

<div style="background-color:#ddd6ce">
Div content here</div>

This div background color is #ddd6ce


Border Color #ddd6ce

<div style="border:3px solid #ddd6ce">
Div here</div>

The color of this border is #ddd6ce


Examples Css3

.textShadowRgb {text-shadow: 4px 4px 2px rgba(0,0,0, 0.8); }
.textShadowHex {
text-shadow: 4px 4px 2px #ddd6ce; }
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #ddd6ce;
-webkit-box-shadow: 1px 1px 3px 2px #ddd6ce;
box-shadow:         1px 1px 3px 2px #ddd6ce; }
				

Text Shadow using RGB

<p style="text-shadow: 4px 4px 2px rgba(0,0,0, 0.8);">Text here</p>
				

The shadow of this text using RGB.


Text Shadow using Hex

<p style="text-shadow: 4px 4px 2px #ddd6ce">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

<div style="-moz-box-shadow: 1px 1px 3px 2px #ddd6ce;
  -webkit-box-shadow: 1px 1px 3px 2px #ddd6ce;
  box-shadow:         1px 1px 3px 2px #ddd6ce;">
Div content here</div>

The shadow of div box using color #ddd6ce