HEX: #BDEB7E
RGB: (189,235,126)
#BDEB7E contains mainly red and green colors. Web safe color of #BDEB7E is #CCFF66 (or #CF6).
#BDEB7E color RGB value is (189,235,126).
RGB: (189,235,126) (74%,92%,49%)
R 189 of 255 = 74%
G 235 of 255 = 92%
B 126 of 255 = 49%
R + G + B ~ 72%. #BDEB7E is quite light color.
R + G + B =
189 + 235 + 126 = 550 (100%)
R 189 of 550 ~ 34.36%
G 235 of 550 ~ 42.73%
B 126 of 550 ~ 22.91%
#BDEB7E color CMYK value is (20,0,46,8).
CMYK: (20,0,46,8) C20M0Y46K8 (20%,0%,46%,8%) (0.20/0.00/0.46/0.08)
BD | EB | 7E | |
---|---|---|---|
RGB | 189 | 235 | 126 |
HSL | 85° | 73.15% | 70.78% |
HSB/HSV | 85° | 46.38% | 92.16% |
CMYK | 19.57% | 0.00% | 46.38% |
7.84% |
HEX | BD | EB | 7E |
Decimal | 189 | 235 | 126 |
Binary | 10111101 | 11101011 | 1111110 |
Octal | 275 | 353 | 176 |
Examples of css and html codes for elements with #BDEB7E color. Also use rgb(189,235,126) instead hex code.
.myTextColor { color: #BDEB7E; }
<p style="color:#BDEB7E">This sample text font color is #BDEB7E.</p>
This text font color is #BDEB7E.
.myBgColor { background-color: #BDEB7E; }
<div style="background-color:#BDEB7E">Inner text</div>
This div background color is #BDEB7E.
.myBorderColor { border: 1px solid #BDEB7E; }
<div style="border:3px solid #BDEB7E">Div</div>
This div border color is #BDEB7E.
.myOpacity80 { color: #BDEB7E; opacity: 0.8; }
<p style="color:#BDEB7E;opacity:0.8;">80%</p>
Text with #BDEB7E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BDEB7E;}
<p style="text-shadow: 3px 3px 1px #BDEB7E">Text here.</p>
This text has shadow with #BDEB7E color.
.textShadow {text-shadow: 3px 3px 1px #BDEB7E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BDEB7E, 5px 5px 20px red">Text here.</p>
This text has shadow with #BDEB7E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BDEB7E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BDEB7E, Direction=45, Strength=4)">Text</p>
This text has shadow with #BDEB7E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BDEB7E; -webkit-box-shadow: 1px 1px 3px 2px #BDEB7E; box-shadow: 1px 1px 3px 2px #BDEB7E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BDEB7E; -webkit-box-shadow: 1px 1px 3px 2px #BDEB7E; box-shadow:1px 1px 3px 2px #BDEB7E;">
Div content here</div>
This text has color #BDEB7E on black background.
This text has color #BDEB7E on white background.
This text has black color on #BDEB7E background.
This text has white color on #BDEB7E background.