HEX: #BEFEE4
RGB: (190,254,228)
#BEFEE4 contains mainly green and blue colors. Web safe color of #BEFEE4 is #CCFFCC (or #CFC).
#BEFEE4 color RGB value is (190,254,228).
RGB: (190,254,228) (75%,100%,89%)
R 190 of 255 = 75%
G 254 of 255 = 100%
B 228 of 255 = 89%
R + G + B ~ 88%. #BEFEE4 is light color.
R + G + B =
190 + 254 + 228 = 672 (100%)
R 190 of 672 ~ 28.27%
G 254 of 672 ~ 37.8%
B 228 of 672 ~ 33.93%
#BEFEE4 color CMYK value is (25,0,10,0).
CMYK: (25,0,10,0) C25M0Y10K0 (25%,0%,10%,0%) (0.25/0.00/0.10/0.00)
BE | FE | E4 | |
---|---|---|---|
RGB | 190 | 254 | 228 |
HSL | 156° | 96.97% | 87.06% |
HSB/HSV | 156° | 25.20% | 99.61% |
CMYK | 25.20% | 0.00% | 10.24% |
0.39% |
HEX | BE | FE | E4 |
Decimal | 190 | 254 | 228 |
Binary | 10111110 | 11111110 | 11100100 |
Octal | 276 | 376 | 344 |
Examples of css and html codes for elements with #BEFEE4 color. Also use rgb(190,254,228) instead hex code.
.myTextColor { color: #BEFEE4; }
<p style="color:#BEFEE4">This sample text font color is #BEFEE4.</p>
This text font color is #BEFEE4.
.myBgColor { background-color: #BEFEE4; }
<div style="background-color:#BEFEE4">Inner text</div>
This div background color is #BEFEE4.
.myBorderColor { border: 1px solid #BEFEE4; }
<div style="border:3px solid #BEFEE4">Div</div>
This div border color is #BEFEE4.
.myOpacity80 { color: #BEFEE4; opacity: 0.8; }
<p style="color:#BEFEE4;opacity:0.8;">80%</p>
Text with #BEFEE4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEFEE4;}
<p style="text-shadow: 3px 3px 1px #BEFEE4">Text here.</p>
This text has shadow with #BEFEE4 color.
.textShadow {text-shadow: 3px 3px 1px #BEFEE4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEFEE4, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEFEE4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEFEE4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEFEE4, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEFEE4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEFEE4; -webkit-box-shadow: 1px 1px 3px 2px #BEFEE4; box-shadow: 1px 1px 3px 2px #BEFEE4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEFEE4; -webkit-box-shadow: 1px 1px 3px 2px #BEFEE4; box-shadow:1px 1px 3px 2px #BEFEE4;">
Div content here</div>
This text has color #BEFEE4 on black background.
This text has color #BEFEE4 on white background.
This text has black color on #BEFEE4 background.
This text has white color on #BEFEE4 background.