HEX: #FFE1CE
RGB: (255,225,206)
#FFE1CE contains red, green and blue colors in about the same proportion. Web safe color of #FFE1CE is #FFCCCC (or #FCC).
#FFE1CE color RGB value is (255,225,206).
RGB: (255,225,206) (100%,88%,81%)
R 255 of 255 = 100%
G 225 of 255 = 88%
B 206 of 255 = 81%
R + G + B ~ 90%. #FFE1CE is light color.
R + G + B =
255 + 225 + 206 = 686 (100%)
R 255 of 686 ~ 37.17%
G 225 of 686 ~ 32.8%
B 206 of 686 ~ 30.03%
#FFE1CE color CMYK value is (0,12,19,0).
CMYK: (0,12,19,0) C0M12Y19K0 (0%,12%,19%,0%) (0.00/0.12/0.19/0.00)
FF | E1 | CE | |
---|---|---|---|
RGB | 255 | 225 | 206 |
HSL | 23° | 100.00% | 90.39% |
HSB/HSV | 23° | 19.22% | 100.00% |
CMYK | 0.00% | 11.76% | 19.22% |
0.00% |
HEX | FF | E1 | CE |
Decimal | 255 | 225 | 206 |
Binary | 11111111 | 11100001 | 11001110 |
Octal | 377 | 341 | 316 |
Examples of css and html codes for elements with #FFE1CE color. Also use rgb(255,225,206) instead hex code.
.myTextColor { color: #FFE1CE; }
<p style="color:#FFE1CE">This sample text font color is #FFE1CE.</p>
This text font color is #FFE1CE.
.myBgColor { background-color: #FFE1CE; }
<div style="background-color:#FFE1CE">Inner text</div>
This div background color is #FFE1CE.
.myBorderColor { border: 1px solid #FFE1CE; }
<div style="border:3px solid #FFE1CE">Div</div>
This div border color is #FFE1CE.
.myOpacity80 { color: #FFE1CE; opacity: 0.8; }
<p style="color:#FFE1CE;opacity:0.8;">80%</p>
Text with #FFE1CE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFE1CE;}
<p style="text-shadow: 3px 3px 1px #FFE1CE">Text here.</p>
This text has shadow with #FFE1CE color.
.textShadow {text-shadow: 3px 3px 1px #FFE1CE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFE1CE, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFE1CE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFE1CE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFE1CE, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFE1CE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFE1CE; -webkit-box-shadow: 1px 1px 3px 2px #FFE1CE; box-shadow: 1px 1px 3px 2px #FFE1CE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFE1CE; -webkit-box-shadow: 1px 1px 3px 2px #FFE1CE; box-shadow:1px 1px 3px 2px #FFE1CE;">
Div content here</div>
This text has color #FFE1CE on black background.
This text has color #FFE1CE on white background.
This text has black color on #FFE1CE background.
This text has white color on #FFE1CE background.