HEX: #BBD677
RGB: (187,214,119)
#BBD677 contains mainly red and green colors. Web safe color of #BBD677 is #CCCC66 (or #CC6).
#BBD677 color RGB value is (187,214,119).
RGB: (187,214,119) (73%,84%,47%)
R 187 of 255 = 73%
G 214 of 255 = 84%
B 119 of 255 = 47%
R + G + B ~ 68%. #BBD677 is quite light color.
R + G + B =
187 + 214 + 119 = 520 (100%)
R 187 of 520 ~ 35.96%
G 214 of 520 ~ 41.15%
B 119 of 520 ~ 22.88%
#BBD677 color CMYK value is (13,0,44,16).
CMYK: (13,0,44,16) C13M0Y44K16 (13%,0%,44%,16%) (0.13/0.00/0.44/0.16)
BB | D6 | 77 | |
---|---|---|---|
RGB | 187 | 214 | 119 |
HSL | 77° | 53.67% | 65.29% |
HSB/HSV | 77° | 44.39% | 83.92% |
CMYK | 12.62% | 0.00% | 44.39% |
16.08% |
HEX | BB | D6 | 77 |
Decimal | 187 | 214 | 119 |
Binary | 10111011 | 11010110 | 1110111 |
Octal | 273 | 326 | 167 |
Examples of css and html codes for elements with #BBD677 color. Also use rgb(187,214,119) instead hex code.
.myTextColor { color: #BBD677; }
<p style="color:#BBD677">This sample text font color is #BBD677.</p>
This text font color is #BBD677.
.myBgColor { background-color: #BBD677; }
<div style="background-color:#BBD677">Inner text</div>
This div background color is #BBD677.
.myBorderColor { border: 1px solid #BBD677; }
<div style="border:3px solid #BBD677">Div</div>
This div border color is #BBD677.
.myOpacity80 { color: #BBD677; opacity: 0.8; }
<p style="color:#BBD677;opacity:0.8;">80%</p>
Text with #BBD677 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBD677;}
<p style="text-shadow: 3px 3px 1px #BBD677">Text here.</p>
This text has shadow with #BBD677 color.
.textShadow {text-shadow: 3px 3px 1px #BBD677, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBD677, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBD677 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBD677, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBD677, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBD677 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBD677; -webkit-box-shadow: 1px 1px 3px 2px #BBD677; box-shadow: 1px 1px 3px 2px #BBD677; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBD677; -webkit-box-shadow: 1px 1px 3px 2px #BBD677; box-shadow:1px 1px 3px 2px #BBD677;">
Div content here</div>
This text has color #BBD677 on black background.
This text has color #BBD677 on white background.
This text has black color on #BBD677 background.
This text has white color on #BBD677 background.