Hex #eed8ae Color

#eed8ae
equivalent to

RGB

(238, 216, 174)

Details of #eed8ae

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
238
67.4557
0.11
0.00
87.1657
70.3449
39°
83.8718
216
70.3449
0.65
0.09
1.3153
0.3591
27°
-3.2128
174
50.0670
0.81
0.27   0.07
23.5028
0.3744
93°
23.3290

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11101110
356
238
EE
Green
11011000
330
216
D8
Blue
10101110
256
174
AE

RGB in % of #eed8ae

%37.90
%34.39
%27.71

CMYK in % of #eed8ae

%0
%9
%27
%7

Triads of color #eed8ae

#eed8ae #d8aeee #aeeeae

Similar Colors to #eed8ae

#eed8ae #eeb8ae #e4eeae

Preview Color #eed8ae on black ground

#eed8ae is very interesting for text.

Preview Color #eed8ae on white ground

#eed8ae is very interesting for text.

CSS Codes #eed8ae color

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

Text Font Color #eed8ae

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

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

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

This div background color is #eed8ae


Border Color #eed8ae

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

The color of this border is #eed8ae


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #eed8ae