HEX: #BEFAD6
RGB: (190,250,214)
#BEFAD6 contains mainly green and blue colors. Web safe color of #BEFAD6 is #CCFFCC (or #CFC).
#BEFAD6 color RGB value is (190,250,214).
RGB: (190,250,214) (75%,98%,84%)
R 190 of 255 = 75%
G 250 of 255 = 98%
B 214 of 255 = 84%
R + G + B ~ 86%. #BEFAD6 is light color.
R + G + B =
190 + 250 + 214 = 654 (100%)
R 190 of 654 ~ 29.05%
G 250 of 654 ~ 38.23%
B 214 of 654 ~ 32.72%
#BEFAD6 color CMYK value is (24,0,14,2).
CMYK: (24,0,14,2) C24M0Y14K2 (24%,0%,14%,2%) (0.24/0.00/0.14/0.02)
BE | FA | D6 | |
---|---|---|---|
RGB | 190 | 250 | 214 |
HSL | 144° | 85.71% | 86.27% |
HSB/HSV | 144° | 24.00% | 98.04% |
CMYK | 24.00% | 0.00% | 14.40% |
1.96% |
HEX | BE | FA | D6 |
Decimal | 190 | 250 | 214 |
Binary | 10111110 | 11111010 | 11010110 |
Octal | 276 | 372 | 326 |
Examples of css and html codes for elements with #BEFAD6 color. Also use rgb(190,250,214) instead hex code.
.myTextColor { color: #BEFAD6; }
<p style="color:#BEFAD6">This sample text font color is #BEFAD6.</p>
This text font color is #BEFAD6.
.myBgColor { background-color: #BEFAD6; }
<div style="background-color:#BEFAD6">Inner text</div>
This div background color is #BEFAD6.
.myBorderColor { border: 1px solid #BEFAD6; }
<div style="border:3px solid #BEFAD6">Div</div>
This div border color is #BEFAD6.
.myOpacity80 { color: #BEFAD6; opacity: 0.8; }
<p style="color:#BEFAD6;opacity:0.8;">80%</p>
Text with #BEFAD6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEFAD6;}
<p style="text-shadow: 3px 3px 1px #BEFAD6">Text here.</p>
This text has shadow with #BEFAD6 color.
.textShadow {text-shadow: 3px 3px 1px #BEFAD6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEFAD6, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEFAD6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEFAD6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEFAD6, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEFAD6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEFAD6; -webkit-box-shadow: 1px 1px 3px 2px #BEFAD6; box-shadow: 1px 1px 3px 2px #BEFAD6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEFAD6; -webkit-box-shadow: 1px 1px 3px 2px #BEFAD6; box-shadow:1px 1px 3px 2px #BEFAD6;">
Div content here</div>
This text has color #BEFAD6 on black background.
This text has color #BEFAD6 on white background.
This text has black color on #BEFAD6 background.
This text has white color on #BEFAD6 background.