HEX: #BBC37D
RGB: (187,195,125)
#BBC37D contains mainly red and green colors. Web safe color of #BBC37D is #CCCC66 (or #CC6).
#BBC37D color RGB value is (187,195,125).
RGB: (187,195,125) (73%,76%,49%)
R 187 of 255 = 73%
G 195 of 255 = 76%
B 125 of 255 = 49%
R + G + B ~ 66%. #BBC37D is quite light color.
R + G + B =
187 + 195 + 125 = 507 (100%)
R 187 of 507 ~ 36.88%
G 195 of 507 ~ 38.46%
B 125 of 507 ~ 24.65%
#BBC37D color CMYK value is (4,0,36,24).
CMYK: (4,0,36,24) C4M0Y36K24 (4%,0%,36%,24%) (0.04/0.00/0.36/0.24)
BB | C3 | 7D | |
---|---|---|---|
RGB | 187 | 195 | 125 |
HSL | 67° | 36.84% | 62.75% |
HSB/HSV | 67° | 35.90% | 76.47% |
CMYK | 4.10% | 0.00% | 35.90% |
23.53% |
HEX | BB | C3 | 7D |
Decimal | 187 | 195 | 125 |
Binary | 10111011 | 11000011 | 1111101 |
Octal | 273 | 303 | 175 |
Examples of css and html codes for elements with #BBC37D color. Also use rgb(187,195,125) instead hex code.
.myTextColor { color: #BBC37D; }
<p style="color:#BBC37D">This sample text font color is #BBC37D.</p>
This text font color is #BBC37D.
.myBgColor { background-color: #BBC37D; }
<div style="background-color:#BBC37D">Inner text</div>
This div background color is #BBC37D.
.myBorderColor { border: 1px solid #BBC37D; }
<div style="border:3px solid #BBC37D">Div</div>
This div border color is #BBC37D.
.myOpacity80 { color: #BBC37D; opacity: 0.8; }
<p style="color:#BBC37D;opacity:0.8;">80%</p>
Text with #BBC37D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBC37D;}
<p style="text-shadow: 3px 3px 1px #BBC37D">Text here.</p>
This text has shadow with #BBC37D color.
.textShadow {text-shadow: 3px 3px 1px #BBC37D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBC37D, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBC37D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBC37D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBC37D, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBC37D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBC37D; -webkit-box-shadow: 1px 1px 3px 2px #BBC37D; box-shadow: 1px 1px 3px 2px #BBC37D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBC37D; -webkit-box-shadow: 1px 1px 3px 2px #BBC37D; box-shadow:1px 1px 3px 2px #BBC37D;">
Div content here</div>
This text has color #BBC37D on black background.
This text has color #BBC37D on white background.
This text has black color on #BBC37D background.
This text has white color on #BBC37D background.