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