Hex #ffefdb Color

#ffefdb
equivalent to

RGB

(255, 239, 219)

Details of #ffefdb

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
255
84.8927
0.09
0.00
95.2062
88.1075
33°
93.8656
239
88.1075
1.00
0.06
2.1826
0.3361
14°
-2.8277
219
79.5500
0.93
0.14   0.00
11.6032
0.3489
100°
15.4753

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11111111
377
255
FF
Green
11101111
357
239
EF
Blue
11011011
333
219
DB

RGB in % of #ffefdb

%35.76
%33.52
%30.72

CMYK in % of #ffefdb

%0
%6
%14
%0

Triads of color #ffefdb

#ffefdb #efdbff #dbffdb

Similar Colors to #ffefdb

#ffefdb #ffdddb #fdffdb

Preview Color #ffefdb on black ground

#ffefdb is very interesting for text.

Preview Color #ffefdb on white ground

#ffefdb is very interesting for text.

CSS Codes #ffefdb color

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

Text Font Color #ffefdb

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

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

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

This div background color is #ffefdb


Border Color #ffefdb

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

The color of this border is #ffefdb


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #ffefdb