HEX: #BEF4BB
RGB: (190,244,187)
#BEF4BB contains red, green and blue colors in about the same proportion. Web safe color of #BEF4BB is #CCFFCC (or #CFC).
#BEF4BB color RGB value is (190,244,187).
RGB: (190,244,187) (75%,96%,73%)
R 190 of 255 = 75%
G 244 of 255 = 96%
B 187 of 255 = 73%
R + G + B ~ 81%. #BEF4BB is quite light color.
R + G + B =
190 + 244 + 187 = 621 (100%)
R 190 of 621 ~ 30.6%
G 244 of 621 ~ 39.29%
B 187 of 621 ~ 30.11%
#BEF4BB color CMYK value is (22,0,23,4).
CMYK: (22,0,23,4) C22M0Y23K4 (22%,0%,23%,4%) (0.22/0.00/0.23/0.04)
BE | F4 | BB | |
---|---|---|---|
RGB | 190 | 244 | 187 |
HSL | 117° | 72.15% | 84.51% |
HSB/HSV | 117° | 23.36% | 95.69% |
CMYK | 22.13% | 0.00% | 23.36% |
4.31% |
HEX | BE | F4 | BB |
Decimal | 190 | 244 | 187 |
Binary | 10111110 | 11110100 | 10111011 |
Octal | 276 | 364 | 273 |
Examples of css and html codes for elements with #BEF4BB color. Also use rgb(190,244,187) instead hex code.
.myTextColor { color: #BEF4BB; }
<p style="color:#BEF4BB">This sample text font color is #BEF4BB.</p>
This text font color is #BEF4BB.
.myBgColor { background-color: #BEF4BB; }
<div style="background-color:#BEF4BB">Inner text</div>
This div background color is #BEF4BB.
.myBorderColor { border: 1px solid #BEF4BB; }
<div style="border:3px solid #BEF4BB">Div</div>
This div border color is #BEF4BB.
.myOpacity80 { color: #BEF4BB; opacity: 0.8; }
<p style="color:#BEF4BB;opacity:0.8;">80%</p>
Text with #BEF4BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEF4BB;}
<p style="text-shadow: 3px 3px 1px #BEF4BB">Text here.</p>
This text has shadow with #BEF4BB color.
.textShadow {text-shadow: 3px 3px 1px #BEF4BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEF4BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEF4BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEF4BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEF4BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEF4BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEF4BB; -webkit-box-shadow: 1px 1px 3px 2px #BEF4BB; box-shadow: 1px 1px 3px 2px #BEF4BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEF4BB; -webkit-box-shadow: 1px 1px 3px 2px #BEF4BB; box-shadow:1px 1px 3px 2px #BEF4BB;">
Div content here</div>
This text has color #BEF4BB on black background.
This text has color #BEF4BB on white background.
This text has black color on #BEF4BB background.
This text has white color on #BEF4BB background.