Hex #fff5ee Color

#fff5ee
equivalent to

RGB

(255, 245, 238)

Details of #fff5ee

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
255
89.3250
0.07
0.00
97.1211
92.7379
25°
96.3005
245
92.7379
1.00
0.04
2.1670
0.3235
-2.9549
238
94.0812
0.97
0.07   0.00
4.5440
0.3358
100°
9.5065

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11111111
377
255
FF
Green
11110101
365
245
F5
Blue
11101110
356
238
EE

RGB in % of #fff5ee

%34.55
%33.20
%32.25

CMYK in % of #fff5ee

%0
%4
%7
%0

Triads of color #fff5ee

#fff5ee #f5eeff #eeffee

Similar Colors to #fff5ee

#fff5ee #ffeef0 #fffeee

Preview Color #fff5ee on black ground

#fff5ee is very interesting for text.

Preview Color #fff5ee on white ground

#fff5ee is very interesting for text.

CSS Codes #fff5ee color

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

Text Font Color #fff5ee

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

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

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

This div background color is #fff5ee


Border Color #fff5ee

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

The color of this border is #fff5ee


Examples Css3

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

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #fff5ee