HEX: #BDD83B
RGB: (189,216,59)
#BDD83B contains mainly red and green colors. Web safe color of #BDD83B is #CCCC33 (or #CC3).
#BDD83B color RGB value is (189,216,59).
RGB: (189,216,59) (74%,85%,23%)
R 189 of 255 = 74%
G 216 of 255 = 85%
B 59 of 255 = 23%
R + G + B ~ 61%. #BDD83B is quite light color.
R + G + B =
189 + 216 + 59 = 464 (100%)
R 189 of 464 ~ 40.73%
G 216 of 464 ~ 46.55%
B 59 of 464 ~ 12.72%
#BDD83B color CMYK value is (13,0,73,15).
CMYK: (13,0,73,15) C13M0Y73K15 (13%,0%,73%,15%) (0.13/0.00/0.73/0.15)
BD | D8 | 3B | |
---|---|---|---|
RGB | 189 | 216 | 59 |
HSL | 70° | 66.81% | 53.92% |
HSB/HSV | 70° | 72.69% | 84.71% |
CMYK | 12.50% | 0.00% | 72.69% |
15.29% |
HEX | BD | D8 | 3B |
Decimal | 189 | 216 | 59 |
Binary | 10111101 | 11011000 | 111011 |
Octal | 275 | 330 | 73 |
Examples of css and html codes for elements with #BDD83B color. Also use rgb(189,216,59) instead hex code.
.myTextColor { color: #BDD83B; }
<p style="color:#BDD83B">This sample text font color is #BDD83B.</p>
This text font color is #BDD83B.
.myBgColor { background-color: #BDD83B; }
<div style="background-color:#BDD83B">Inner text</div>
This div background color is #BDD83B.
.myBorderColor { border: 1px solid #BDD83B; }
<div style="border:3px solid #BDD83B">Div</div>
This div border color is #BDD83B.
.myOpacity80 { color: #BDD83B; opacity: 0.8; }
<p style="color:#BDD83B;opacity:0.8;">80%</p>
Text with #BDD83B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BDD83B;}
<p style="text-shadow: 3px 3px 1px #BDD83B">Text here.</p>
This text has shadow with #BDD83B color.
.textShadow {text-shadow: 3px 3px 1px #BDD83B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BDD83B, 5px 5px 20px red">Text here.</p>
This text has shadow with #BDD83B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BDD83B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BDD83B, Direction=45, Strength=4)">Text</p>
This text has shadow with #BDD83B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BDD83B; -webkit-box-shadow: 1px 1px 3px 2px #BDD83B; box-shadow: 1px 1px 3px 2px #BDD83B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BDD83B; -webkit-box-shadow: 1px 1px 3px 2px #BDD83B; box-shadow:1px 1px 3px 2px #BDD83B;">
Div content here</div>
This text has color #BDD83B on black background.
This text has color #BDD83B on white background.
This text has black color on #BDD83B background.
This text has white color on #BDD83B background.