HEX: #BEEAFA
RGB: (190,234,250)
#BEEAFA contains mainly green and blue colors. Web safe color of #BEEAFA is #CCFFFF (or #CFF).
#BEEAFA color RGB value is (190,234,250).
RGB: (190,234,250) (75%,92%,98%)
R 190 of 255 = 75%
G 234 of 255 = 92%
B 250 of 255 = 98%
R + G + B ~ 88%. #BEEAFA is light color.
R + G + B =
190 + 234 + 250 = 674 (100%)
R 190 of 674 ~ 28.19%
G 234 of 674 ~ 34.72%
B 250 of 674 ~ 37.09%
#BEEAFA color CMYK value is (24,6,0,2).
CMYK: (24,6,0,2) C24M6Y0K2 (24%,6%,0%,2%) (0.24/0.06/0.00/0.02)
BE | EA | FA | |
---|---|---|---|
RGB | 190 | 234 | 250 |
HSL | 196° | 85.71% | 86.27% |
HSB/HSV | 196° | 24.00% | 98.04% |
CMYK | 24.00% | 6.40% | 0.00% |
1.96% |
HEX | BE | EA | FA |
Decimal | 190 | 234 | 250 |
Binary | 10111110 | 11101010 | 11111010 |
Octal | 276 | 352 | 372 |
Examples of css and html codes for elements with #BEEAFA color. Also use rgb(190,234,250) instead hex code.
.myTextColor { color: #BEEAFA; }
<p style="color:#BEEAFA">This sample text font color is #BEEAFA.</p>
This text font color is #BEEAFA.
.myBgColor { background-color: #BEEAFA; }
<div style="background-color:#BEEAFA">Inner text</div>
This div background color is #BEEAFA.
.myBorderColor { border: 1px solid #BEEAFA; }
<div style="border:3px solid #BEEAFA">Div</div>
This div border color is #BEEAFA.
.myOpacity80 { color: #BEEAFA; opacity: 0.8; }
<p style="color:#BEEAFA;opacity:0.8;">80%</p>
Text with #BEEAFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEEAFA;}
<p style="text-shadow: 3px 3px 1px #BEEAFA">Text here.</p>
This text has shadow with #BEEAFA color.
.textShadow {text-shadow: 3px 3px 1px #BEEAFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEEAFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEEAFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEEAFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEEAFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEEAFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEEAFA; -webkit-box-shadow: 1px 1px 3px 2px #BEEAFA; box-shadow: 1px 1px 3px 2px #BEEAFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEEAFA; -webkit-box-shadow: 1px 1px 3px 2px #BEEAFA; box-shadow:1px 1px 3px 2px #BEEAFA;">
Div content here</div>
This text has color #BEEAFA on black background.
This text has color #BEEAFA on white background.
This text has black color on #BEEAFA background.
This text has white color on #BEEAFA background.