HEX: #BEE4DF
RGB: (190,228,223)
#BEE4DF contains red, green and blue colors in about the same proportion. Web safe color of #BEE4DF is #CCCCCC (or #CCC).
#BEE4DF color RGB value is (190,228,223).
RGB: (190,228,223) (75%,89%,87%)
R 190 of 255 = 75%
G 228 of 255 = 89%
B 223 of 255 = 87%
R + G + B ~ 84%. #BEE4DF is quite light color.
R + G + B =
190 + 228 + 223 = 641 (100%)
R 190 of 641 ~ 29.64%
G 228 of 641 ~ 35.57%
B 223 of 641 ~ 34.79%
#BEE4DF color CMYK value is (17,0,2,11).
CMYK: (17,0,2,11) C17M0Y2K11 (17%,0%,2%,11%) (0.17/0.00/0.02/0.11)
BE | E4 | DF | |
---|---|---|---|
RGB | 190 | 228 | 223 |
HSL | 172° | 41.30% | 81.96% |
HSB/HSV | 172° | 16.67% | 89.41% |
CMYK | 16.67% | 0.00% | 2.19% |
10.59% |
HEX | BE | E4 | DF |
Decimal | 190 | 228 | 223 |
Binary | 10111110 | 11100100 | 11011111 |
Octal | 276 | 344 | 337 |
Examples of css and html codes for elements with #BEE4DF color. Also use rgb(190,228,223) instead hex code.
.myTextColor { color: #BEE4DF; }
<p style="color:#BEE4DF">This sample text font color is #BEE4DF.</p>
This text font color is #BEE4DF.
.myBgColor { background-color: #BEE4DF; }
<div style="background-color:#BEE4DF">Inner text</div>
This div background color is #BEE4DF.
.myBorderColor { border: 1px solid #BEE4DF; }
<div style="border:3px solid #BEE4DF">Div</div>
This div border color is #BEE4DF.
.myOpacity80 { color: #BEE4DF; opacity: 0.8; }
<p style="color:#BEE4DF;opacity:0.8;">80%</p>
Text with #BEE4DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEE4DF;}
<p style="text-shadow: 3px 3px 1px #BEE4DF">Text here.</p>
This text has shadow with #BEE4DF color.
.textShadow {text-shadow: 3px 3px 1px #BEE4DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEE4DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEE4DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEE4DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEE4DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEE4DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEE4DF; -webkit-box-shadow: 1px 1px 3px 2px #BEE4DF; box-shadow: 1px 1px 3px 2px #BEE4DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEE4DF; -webkit-box-shadow: 1px 1px 3px 2px #BEE4DF; box-shadow:1px 1px 3px 2px #BEE4DF;">
Div content here</div>
This text has color #BEE4DF on black background.
This text has color #BEE4DF on white background.
This text has black color on #BEE4DF background.
This text has white color on #BEE4DF background.