Hex #f5f5dc Color

#f5f5dc
equivalent to

RGB

(245, 245, 220)

Details of #f5f5dc

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
245
83.2269
0.17
0.00
95.9489
89.8846
60°
94.8075
245
89.8846
0.56
0.00
-4.1891
0.3279
10°
-9.2162
220
80.6731
0.91
0.10   0.04
12.0399
0.3542
96°
15.9315

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11110101
365
245
F5
Green
11110101
365
245
F5
Blue
11011100
334
220
DC

RGB in % of #f5f5dc

%34.51
%34.51
%30.99

CMYK in % of #f5f5dc

%0
%0
%10
%4

Triads of color #f5f5dc

#f5f5dc #f5dcf5 #dcf5dc

Similar Colors to #f5f5dc

#f5f5dc #f5e9dc #e9f5dc

Preview Color #f5f5dc on black ground

#f5f5dc is very interesting for text.

Preview Color #f5f5dc on white ground

#f5f5dc is very interesting for text.

CSS Codes #f5f5dc color

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

Text Font Color #f5f5dc

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

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

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

This div background color is #f5f5dc


Border Color #f5f5dc

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

The color of this border is #f5f5dc


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #f5f5dc