HEX: #E5F8CB
RGB: (229,248,203)
#E5F8CB contains red, green and blue colors in about the same proportion. Web safe color of #E5F8CB is #CCFFCC (or #CFC).
#E5F8CB color RGB value is (229,248,203).
RGB: (229,248,203) (90%,97%,80%)
R 229 of 255 = 90%
G 248 of 255 = 97%
B 203 of 255 = 80%
R + G + B ~ 89%. #E5F8CB is light color.
R + G + B =
229 + 248 + 203 = 680 (100%)
R 229 of 680 ~ 33.68%
G 248 of 680 ~ 36.47%
B 203 of 680 ~ 29.85%
#E5F8CB color CMYK value is (8,0,18,3).
CMYK: (8,0,18,3) C8M0Y18K3 (8%,0%,18%,3%) (0.08/0.00/0.18/0.03)
E5 | F8 | CB | |
---|---|---|---|
RGB | 229 | 248 | 203 |
HSL | 85° | 76.27% | 88.43% |
HSB/HSV | 85° | 18.15% | 97.25% |
CMYK | 7.66% | 0.00% | 18.15% |
2.75% |
HEX | E5 | F8 | CB |
Decimal | 229 | 248 | 203 |
Binary | 11100101 | 11111000 | 11001011 |
Octal | 345 | 370 | 313 |
Examples of css and html codes for elements with #E5F8CB color. Also use rgb(229,248,203) instead hex code.
.myTextColor { color: #E5F8CB; }
<p style="color:#E5F8CB">This sample text font color is #E5F8CB.</p>
This text font color is #E5F8CB.
.myBgColor { background-color: #E5F8CB; }
<div style="background-color:#E5F8CB">Inner text</div>
This div background color is #E5F8CB.
.myBorderColor { border: 1px solid #E5F8CB; }
<div style="border:3px solid #E5F8CB">Div</div>
This div border color is #E5F8CB.
.myOpacity80 { color: #E5F8CB; opacity: 0.8; }
<p style="color:#E5F8CB;opacity:0.8;">80%</p>
Text with #E5F8CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5F8CB;}
<p style="text-shadow: 3px 3px 1px #E5F8CB">Text here.</p>
This text has shadow with #E5F8CB color.
.textShadow {text-shadow: 3px 3px 1px #E5F8CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5F8CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5F8CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5F8CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5F8CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5F8CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5F8CB; -webkit-box-shadow: 1px 1px 3px 2px #E5F8CB; box-shadow: 1px 1px 3px 2px #E5F8CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5F8CB; -webkit-box-shadow: 1px 1px 3px 2px #E5F8CB; box-shadow:1px 1px 3px 2px #E5F8CB;">
Div content here</div>
This text has color #E5F8CB on black background.
This text has color #E5F8CB on white background.
This text has black color on #E5F8CB background.
This text has white color on #E5F8CB background.