HEX: #BEE1CC
RGB: (190,225,204)
#BEE1CC contains red, green and blue colors in about the same proportion. Web safe color of #BEE1CC is #CCCCCC (or #CCC).
#BEE1CC color RGB value is (190,225,204).
RGB: (190,225,204) (75%,88%,80%)
R 190 of 255 = 75%
G 225 of 255 = 88%
B 204 of 255 = 80%
R + G + B ~ 81%. #BEE1CC is quite light color.
R + G + B =
190 + 225 + 204 = 619 (100%)
R 190 of 619 ~ 30.69%
G 225 of 619 ~ 36.35%
B 204 of 619 ~ 32.96%
#BEE1CC color CMYK value is (16,0,9,12).
CMYK: (16,0,9,12) C16M0Y9K12 (16%,0%,9%,12%) (0.16/0.00/0.09/0.12)
BE | E1 | CC | |
---|---|---|---|
RGB | 190 | 225 | 204 |
HSL | 144° | 36.84% | 81.37% |
HSB/HSV | 144° | 15.56% | 88.24% |
CMYK | 15.56% | 0.00% | 9.33% |
11.76% |
HEX | BE | E1 | CC |
Decimal | 190 | 225 | 204 |
Binary | 10111110 | 11100001 | 11001100 |
Octal | 276 | 341 | 314 |
Examples of css and html codes for elements with #BEE1CC color. Also use rgb(190,225,204) instead hex code.
.myTextColor { color: #BEE1CC; }
<p style="color:#BEE1CC">This sample text font color is #BEE1CC.</p>
This text font color is #BEE1CC.
.myBgColor { background-color: #BEE1CC; }
<div style="background-color:#BEE1CC">Inner text</div>
This div background color is #BEE1CC.
.myBorderColor { border: 1px solid #BEE1CC; }
<div style="border:3px solid #BEE1CC">Div</div>
This div border color is #BEE1CC.
.myOpacity80 { color: #BEE1CC; opacity: 0.8; }
<p style="color:#BEE1CC;opacity:0.8;">80%</p>
Text with #BEE1CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEE1CC;}
<p style="text-shadow: 3px 3px 1px #BEE1CC">Text here.</p>
This text has shadow with #BEE1CC color.
.textShadow {text-shadow: 3px 3px 1px #BEE1CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEE1CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEE1CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEE1CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEE1CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEE1CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEE1CC; -webkit-box-shadow: 1px 1px 3px 2px #BEE1CC; box-shadow: 1px 1px 3px 2px #BEE1CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEE1CC; -webkit-box-shadow: 1px 1px 3px 2px #BEE1CC; box-shadow:1px 1px 3px 2px #BEE1CC;">
Div content here</div>
This text has color #BEE1CC on black background.
This text has color #BEE1CC on white background.
This text has black color on #BEE1CC background.
This text has white color on #BEE1CC background.