HEX: #BEFDD6
RGB: (190,253,214)
#BEFDD6 contains mainly green and blue colors. Web safe color of #BEFDD6 is #CCFFCC (or #CFC).
#BEFDD6 color RGB value is (190,253,214).
RGB: (190,253,214) (75%,99%,84%)
R 190 of 255 = 75%
G 253 of 255 = 99%
B 214 of 255 = 84%
R + G + B ~ 86%. #BEFDD6 is light color.
R + G + B =
190 + 253 + 214 = 657 (100%)
R 190 of 657 ~ 28.92%
G 253 of 657 ~ 38.51%
B 214 of 657 ~ 32.57%
#BEFDD6 color CMYK value is (25,0,15,1).
CMYK: (25,0,15,1) C25M0Y15K1 (25%,0%,15%,1%) (0.25/0.00/0.15/0.01)
BE | FD | D6 | |
---|---|---|---|
RGB | 190 | 253 | 214 |
HSL | 143° | 94.03% | 86.86% |
HSB/HSV | 143° | 24.90% | 99.22% |
CMYK | 24.90% | 0.00% | 15.42% |
0.78% |
HEX | BE | FD | D6 |
Decimal | 190 | 253 | 214 |
Binary | 10111110 | 11111101 | 11010110 |
Octal | 276 | 375 | 326 |
Examples of css and html codes for elements with #BEFDD6 color. Also use rgb(190,253,214) instead hex code.
.myTextColor { color: #BEFDD6; }
<p style="color:#BEFDD6">This sample text font color is #BEFDD6.</p>
This text font color is #BEFDD6.
.myBgColor { background-color: #BEFDD6; }
<div style="background-color:#BEFDD6">Inner text</div>
This div background color is #BEFDD6.
.myBorderColor { border: 1px solid #BEFDD6; }
<div style="border:3px solid #BEFDD6">Div</div>
This div border color is #BEFDD6.
.myOpacity80 { color: #BEFDD6; opacity: 0.8; }
<p style="color:#BEFDD6;opacity:0.8;">80%</p>
Text with #BEFDD6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEFDD6;}
<p style="text-shadow: 3px 3px 1px #BEFDD6">Text here.</p>
This text has shadow with #BEFDD6 color.
.textShadow {text-shadow: 3px 3px 1px #BEFDD6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEFDD6, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEFDD6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEFDD6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEFDD6, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEFDD6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEFDD6; -webkit-box-shadow: 1px 1px 3px 2px #BEFDD6; box-shadow: 1px 1px 3px 2px #BEFDD6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEFDD6; -webkit-box-shadow: 1px 1px 3px 2px #BEFDD6; box-shadow:1px 1px 3px 2px #BEFDD6;">
Div content here</div>
This text has color #BEFDD6 on black background.
This text has color #BEFDD6 on white background.
This text has black color on #BEFDD6 background.
This text has white color on #BEFDD6 background.