HEX: #D5FEBB
RGB: (213,254,187)
#D5FEBB contains mainly red and green colors. Web safe color of #D5FEBB is #CCFFCC (or #CFC).
#D5FEBB color RGB value is (213,254,187).
RGB: (213,254,187) (84%,100%,73%)
R 213 of 255 = 84%
G 254 of 255 = 100%
B 187 of 255 = 73%
R + G + B ~ 86%. #D5FEBB is light color.
R + G + B =
213 + 254 + 187 = 654 (100%)
R 213 of 654 ~ 32.57%
G 254 of 654 ~ 38.84%
B 187 of 654 ~ 28.59%
#D5FEBB color CMYK value is (16,0,26,0).
CMYK: (16,0,26,0) C16M0Y26K0 (16%,0%,26%,0%) (0.16/0.00/0.26/0.00)
D5 | FE | BB | |
---|---|---|---|
RGB | 213 | 254 | 187 |
HSL | 97° | 97.10% | 86.47% |
HSB/HSV | 97° | 26.38% | 99.61% |
CMYK | 16.14% | 0.00% | 26.38% |
0.39% |
HEX | D5 | FE | BB |
Decimal | 213 | 254 | 187 |
Binary | 11010101 | 11111110 | 10111011 |
Octal | 325 | 376 | 273 |
Examples of css and html codes for elements with #D5FEBB color. Also use rgb(213,254,187) instead hex code.
.myTextColor { color: #D5FEBB; }
<p style="color:#D5FEBB">This sample text font color is #D5FEBB.</p>
This text font color is #D5FEBB.
.myBgColor { background-color: #D5FEBB; }
<div style="background-color:#D5FEBB">Inner text</div>
This div background color is #D5FEBB.
.myBorderColor { border: 1px solid #D5FEBB; }
<div style="border:3px solid #D5FEBB">Div</div>
This div border color is #D5FEBB.
.myOpacity80 { color: #D5FEBB; opacity: 0.8; }
<p style="color:#D5FEBB;opacity:0.8;">80%</p>
Text with #D5FEBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5FEBB;}
<p style="text-shadow: 3px 3px 1px #D5FEBB">Text here.</p>
This text has shadow with #D5FEBB color.
.textShadow {text-shadow: 3px 3px 1px #D5FEBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5FEBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5FEBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5FEBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5FEBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5FEBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5FEBB; -webkit-box-shadow: 1px 1px 3px 2px #D5FEBB; box-shadow: 1px 1px 3px 2px #D5FEBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5FEBB; -webkit-box-shadow: 1px 1px 3px 2px #D5FEBB; box-shadow:1px 1px 3px 2px #D5FEBB;">
Div content here</div>
This text has color #D5FEBB on black background.
This text has color #D5FEBB on white background.
This text has black color on #D5FEBB background.
This text has white color on #D5FEBB background.