HEX: #BEEBBB
RGB: (190,235,187)
#BEEBBB contains red, green and blue colors in about the same proportion. Web safe color of #BEEBBB is #CCFFCC (or #CFC).
#BEEBBB color RGB value is (190,235,187).
RGB: (190,235,187) (75%,92%,73%)
R 190 of 255 = 75%
G 235 of 255 = 92%
B 187 of 255 = 73%
R + G + B ~ 80%. #BEEBBB is quite light color.
R + G + B =
190 + 235 + 187 = 612 (100%)
R 190 of 612 ~ 31.05%
G 235 of 612 ~ 38.4%
B 187 of 612 ~ 30.56%
#BEEBBB color CMYK value is (19,0,20,8).
CMYK: (19,0,20,8) C19M0Y20K8 (19%,0%,20%,8%) (0.19/0.00/0.20/0.08)
BE | EB | BB | |
---|---|---|---|
RGB | 190 | 235 | 187 |
HSL | 116° | 54.55% | 82.75% |
HSB/HSV | 116° | 20.43% | 92.16% |
CMYK | 19.15% | 0.00% | 20.43% |
7.84% |
HEX | BE | EB | BB |
Decimal | 190 | 235 | 187 |
Binary | 10111110 | 11101011 | 10111011 |
Octal | 276 | 353 | 273 |
Examples of css and html codes for elements with #BEEBBB color. Also use rgb(190,235,187) instead hex code.
.myTextColor { color: #BEEBBB; }
<p style="color:#BEEBBB">This sample text font color is #BEEBBB.</p>
This text font color is #BEEBBB.
.myBgColor { background-color: #BEEBBB; }
<div style="background-color:#BEEBBB">Inner text</div>
This div background color is #BEEBBB.
.myBorderColor { border: 1px solid #BEEBBB; }
<div style="border:3px solid #BEEBBB">Div</div>
This div border color is #BEEBBB.
.myOpacity80 { color: #BEEBBB; opacity: 0.8; }
<p style="color:#BEEBBB;opacity:0.8;">80%</p>
Text with #BEEBBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEEBBB;}
<p style="text-shadow: 3px 3px 1px #BEEBBB">Text here.</p>
This text has shadow with #BEEBBB color.
.textShadow {text-shadow: 3px 3px 1px #BEEBBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEEBBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEEBBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEEBBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEEBBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEEBBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEEBBB; -webkit-box-shadow: 1px 1px 3px 2px #BEEBBB; box-shadow: 1px 1px 3px 2px #BEEBBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEEBBB; -webkit-box-shadow: 1px 1px 3px 2px #BEEBBB; box-shadow:1px 1px 3px 2px #BEEBBB;">
Div content here</div>
This text has color #BEEBBB on black background.
This text has color #BEEBBB on white background.
This text has black color on #BEEBBB background.
This text has white color on #BEEBBB background.