HEX: #FFEBCA
RGB: (255,235,202)
#FFEBCA contains red, green and blue colors in about the same proportion. Web safe color of #FFEBCA is #FFFFCC (or #FFC).
#FFEBCA color RGB value is (255,235,202).
RGB: (255,235,202) (100%,92%,79%)
R 255 of 255 = 100%
G 235 of 255 = 92%
B 202 of 255 = 79%
R + G + B ~ 90%. #FFEBCA is light color.
R + G + B =
255 + 235 + 202 = 692 (100%)
R 255 of 692 ~ 36.85%
G 235 of 692 ~ 33.96%
B 202 of 692 ~ 29.19%
#FFEBCA color CMYK value is (0,8,21,0).
CMYK: (0,8,21,0) C0M8Y21K0 (0%,8%,21%,0%) (0.00/0.08/0.21/0.00)
FF | EB | CA | |
---|---|---|---|
RGB | 255 | 235 | 202 |
HSL | 37° | 100.00% | 89.61% |
HSB/HSV | 37° | 20.78% | 100.00% |
CMYK | 0.00% | 7.84% | 20.78% |
0.00% |
HEX | FF | EB | CA |
Decimal | 255 | 235 | 202 |
Binary | 11111111 | 11101011 | 11001010 |
Octal | 377 | 353 | 312 |
Examples of css and html codes for elements with #FFEBCA color. Also use rgb(255,235,202) instead hex code.
.myTextColor { color: #FFEBCA; }
<p style="color:#FFEBCA">This sample text font color is #FFEBCA.</p>
This text font color is #FFEBCA.
.myBgColor { background-color: #FFEBCA; }
<div style="background-color:#FFEBCA">Inner text</div>
This div background color is #FFEBCA.
.myBorderColor { border: 1px solid #FFEBCA; }
<div style="border:3px solid #FFEBCA">Div</div>
This div border color is #FFEBCA.
.myOpacity80 { color: #FFEBCA; opacity: 0.8; }
<p style="color:#FFEBCA;opacity:0.8;">80%</p>
Text with #FFEBCA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFEBCA;}
<p style="text-shadow: 3px 3px 1px #FFEBCA">Text here.</p>
This text has shadow with #FFEBCA color.
.textShadow {text-shadow: 3px 3px 1px #FFEBCA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFEBCA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFEBCA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFEBCA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFEBCA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFEBCA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFEBCA; -webkit-box-shadow: 1px 1px 3px 2px #FFEBCA; box-shadow: 1px 1px 3px 2px #FFEBCA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFEBCA; -webkit-box-shadow: 1px 1px 3px 2px #FFEBCA; box-shadow:1px 1px 3px 2px #FFEBCA;">
Div content here</div>
This text has color #FFEBCA on black background.
This text has color #FFEBCA on white background.
This text has black color on #FFEBCA background.
This text has white color on #FFEBCA background.