Hex #f1efec Color

#f1efec
equivalent to

RGB

(241, 239, 236)

Details of #f1efec

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
241
82.2825
0.10
0.00
94.5214
86.4899
36°
92.9999
239
86.4899
0.15
0.01
0.1475
0.3159
-4.8201
236
91.7144
0.94
0.02   0.05
1.6728
0.3320
95°
6.6496

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11110001
361
241
F1
Green
11101111
357
239
EF
Blue
11101100
354
236
EC

RGB in % of #f1efec

%33.66
%33.38
%32.96

CMYK in % of #f1efec

%0
%1
%2
%5

Triads of color #f1efec

#f1efec #efecf1 #ecf1ec

Similar Colors to #f1efec

#f1efec #f1edec #f1f1ec

Preview Color #f1efec on black ground

#f1efec is very interesting for text.

Preview Color #f1efec on white ground

#f1efec is very interesting for text.

CSS Codes #f1efec color

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

Text Font Color #f1efec

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

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

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

This div background color is #f1efec


Border Color #f1efec

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

The color of this border is #f1efec


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #f1efec