HEX: #BEE3FA
RGB: (190,227,250)
#BEE3FA contains mainly green and blue colors. Web safe color of #BEE3FA is #CCCCFF (or #CCF).
#BEE3FA color RGB value is (190,227,250).
RGB: (190,227,250) (75%,89%,98%)
R 190 of 255 = 75%
G 227 of 255 = 89%
B 250 of 255 = 98%
R + G + B ~ 87%. #BEE3FA is light color.
R + G + B =
190 + 227 + 250 = 667 (100%)
R 190 of 667 ~ 28.49%
G 227 of 667 ~ 34.03%
B 250 of 667 ~ 37.48%
#BEE3FA color CMYK value is (24,9,0,2).
CMYK: (24,9,0,2) C24M9Y0K2 (24%,9%,0%,2%) (0.24/0.09/0.00/0.02)
BE | E3 | FA | |
---|---|---|---|
RGB | 190 | 227 | 250 |
HSL | 203° | 85.71% | 86.27% |
HSB/HSV | 203° | 24.00% | 98.04% |
CMYK | 24.00% | 9.20% | 0.00% |
1.96% |
HEX | BE | E3 | FA |
Decimal | 190 | 227 | 250 |
Binary | 10111110 | 11100011 | 11111010 |
Octal | 276 | 343 | 372 |
Examples of css and html codes for elements with #BEE3FA color. Also use rgb(190,227,250) instead hex code.
.myTextColor { color: #BEE3FA; }
<p style="color:#BEE3FA">This sample text font color is #BEE3FA.</p>
This text font color is #BEE3FA.
.myBgColor { background-color: #BEE3FA; }
<div style="background-color:#BEE3FA">Inner text</div>
This div background color is #BEE3FA.
.myBorderColor { border: 1px solid #BEE3FA; }
<div style="border:3px solid #BEE3FA">Div</div>
This div border color is #BEE3FA.
.myOpacity80 { color: #BEE3FA; opacity: 0.8; }
<p style="color:#BEE3FA;opacity:0.8;">80%</p>
Text with #BEE3FA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEE3FA;}
<p style="text-shadow: 3px 3px 1px #BEE3FA">Text here.</p>
This text has shadow with #BEE3FA color.
.textShadow {text-shadow: 3px 3px 1px #BEE3FA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEE3FA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEE3FA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEE3FA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEE3FA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEE3FA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEE3FA; -webkit-box-shadow: 1px 1px 3px 2px #BEE3FA; box-shadow: 1px 1px 3px 2px #BEE3FA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEE3FA; -webkit-box-shadow: 1px 1px 3px 2px #BEE3FA; box-shadow:1px 1px 3px 2px #BEE3FA;">
Div content here</div>
This text has color #BEE3FA on black background.
This text has color #BEE3FA on white background.
This text has black color on #BEE3FA background.
This text has white color on #BEE3FA background.