Hex #fff8dc Color

#fff8dc
equivalent to

RGB

(255, 248, 220)

Details of #fff8dc

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
255
87.7257
0.13
0.00
97.4553
93.5621
48°
96.7275
248
93.5621
1.00
0.03
-2.2139
0.3343
14°
-7.3846
220
81.1458
0.93
0.14   0.00
14.2843
0.3565
100°
17.9869

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11111111
377
255
FF
Green
11111000
370
248
F8
Blue
11011100
334
220
DC

RGB in % of #fff8dc

%35.27
%34.30
%30.43

CMYK in % of #fff8dc

%0
%3
%14
%0

Triads of color #fff8dc

#fff8dc #f8dcff #dcffdc

Similar Colors to #fff8dc

#fff8dc #ffe7dc #f5ffdc

Preview Color #fff8dc on black ground

#fff8dc is very interesting for text.

Preview Color #fff8dc on white ground

#fff8dc is very interesting for text.

CSS Codes #fff8dc color

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

Text Font Color #fff8dc

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

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

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

This div background color is #fff8dc


Border Color #fff8dc

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

The color of this border is #fff8dc


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #fff8dc