HEX: #E6F5BB
RGB: (230,245,187)
#E6F5BB contains red, green and blue colors in about the same proportion. Web safe color of #E6F5BB is #CCFFCC (or #CFC).
#E6F5BB color RGB value is (230,245,187).
RGB: (230,245,187) (90%,96%,73%)
R 230 of 255 = 90%
G 245 of 255 = 96%
B 187 of 255 = 73%
R + G + B ~ 86%. #E6F5BB is light color.
R + G + B =
230 + 245 + 187 = 662 (100%)
R 230 of 662 ~ 34.74%
G 245 of 662 ~ 37.01%
B 187 of 662 ~ 28.25%
#E6F5BB color CMYK value is (6,0,24,4).
CMYK: (6,0,24,4) C6M0Y24K4 (6%,0%,24%,4%) (0.06/0.00/0.24/0.04)
E6 | F5 | BB | |
---|---|---|---|
RGB | 230 | 245 | 187 |
HSL | 76° | 74.36% | 84.71% |
HSB/HSV | 76° | 23.67% | 96.08% |
CMYK | 6.12% | 0.00% | 23.67% |
3.92% |
HEX | E6 | F5 | BB |
Decimal | 230 | 245 | 187 |
Binary | 11100110 | 11110101 | 10111011 |
Octal | 346 | 365 | 273 |
Examples of css and html codes for elements with #E6F5BB color. Also use rgb(230,245,187) instead hex code.
.myTextColor { color: #E6F5BB; }
<p style="color:#E6F5BB">This sample text font color is #E6F5BB.</p>
This text font color is #E6F5BB.
.myBgColor { background-color: #E6F5BB; }
<div style="background-color:#E6F5BB">Inner text</div>
This div background color is #E6F5BB.
.myBorderColor { border: 1px solid #E6F5BB; }
<div style="border:3px solid #E6F5BB">Div</div>
This div border color is #E6F5BB.
.myOpacity80 { color: #E6F5BB; opacity: 0.8; }
<p style="color:#E6F5BB;opacity:0.8;">80%</p>
Text with #E6F5BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6F5BB;}
<p style="text-shadow: 3px 3px 1px #E6F5BB">Text here.</p>
This text has shadow with #E6F5BB color.
.textShadow {text-shadow: 3px 3px 1px #E6F5BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6F5BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6F5BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6F5BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6F5BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6F5BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6F5BB; -webkit-box-shadow: 1px 1px 3px 2px #E6F5BB; box-shadow: 1px 1px 3px 2px #E6F5BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6F5BB; -webkit-box-shadow: 1px 1px 3px 2px #E6F5BB; box-shadow:1px 1px 3px 2px #E6F5BB;">
Div content here</div>
This text has color #E6F5BB on black background.
This text has color #E6F5BB on white background.
This text has black color on #E6F5BB background.
This text has white color on #E6F5BB background.