Hex #dda0dd Color

#dda0dd
equivalent to

RGB

(221, 160, 221)

Details of #dda0dd

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
221
55.4407
0.83
0.00
73.3727
45.7342
300°
67.6271
160
45.7342
0.47
0.28
32.5391
0.3159
28°
27.9873
221
74.3122
0.75
0.00   0.13
-21.9971
0.2606
87°
-17.7891

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11011101
335
221
DD
Green
10100000
240
160
A0
Blue
11011101
335
221
DD

RGB in % of #dda0dd

%36.71
%26.58
%36.71

CMYK in % of #dda0dd

%0
%28
%0
%13

Triads of color #dda0dd

#dda0dd #a0dddd #dddddd

Similar Colors to #dda0dd

#dda0dd #bfa0dd #dda0bf

Preview Color #dda0dd on black ground

#dda0dd is very interesting for text.

Preview Color #dda0dd on white ground

#dda0dd is very interesting for text.

CSS Codes #dda0dd color

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

Text Font Color #dda0dd

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

This sample text font color is #dda0dd
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 #dda0dd

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

This div background color is #dda0dd


Border Color #dda0dd

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

The color of this border is #dda0dd


Examples Css3

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

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 #dda0dd">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #dda0dd