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