HEX: #B0AE5B
RGB: (176,174,91)
#B0AE5B contains mainly red and green colors. Web safe color of #B0AE5B is #999966 (or #996).
#B0AE5B color RGB value is (176,174,91).
RGB: (176,174,91) (69%,68%,36%)
R 176 of 255 = 69%
G 174 of 255 = 68%
B 91 of 255 = 36%
R + G + B ~ 58%. #B0AE5B is middle color (not dark and not light).
R + G + B =
176 + 174 + 91 = 441 (100%)
R 176 of 441 ~ 39.91%
G 174 of 441 ~ 39.46%
B 91 of 441 ~ 20.63%
#B0AE5B color CMYK value is (0,1,48,31).
CMYK: (0,1,48,31) C0M1Y48K31 (0%,1%,48%,31%) (0.00/0.01/0.48/0.31)
B0 | AE | 5B | |
---|---|---|---|
RGB | 176 | 174 | 91 |
HSL | 59° | 34.98% | 52.35% |
HSB/HSV | 59° | 48.30% | 69.02% |
CMYK | 0.00% | 1.14% | 48.30% |
30.98% |
HEX | B0 | AE | 5B |
Decimal | 176 | 174 | 91 |
Binary | 10110000 | 10101110 | 1011011 |
Octal | 260 | 256 | 133 |
Examples of css and html codes for elements with #B0AE5B color. Also use rgb(176,174,91) instead hex code.
.myTextColor { color: #B0AE5B; }
<p style="color:#B0AE5B">This sample text font color is #B0AE5B.</p>
This text font color is #B0AE5B.
.myBgColor { background-color: #B0AE5B; }
<div style="background-color:#B0AE5B">Inner text</div>
This div background color is #B0AE5B.
.myBorderColor { border: 1px solid #B0AE5B; }
<div style="border:3px solid #B0AE5B">Div</div>
This div border color is #B0AE5B.
.myOpacity80 { color: #B0AE5B; opacity: 0.8; }
<p style="color:#B0AE5B;opacity:0.8;">80%</p>
Text with #B0AE5B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B0AE5B;}
<p style="text-shadow: 3px 3px 1px #B0AE5B">Text here.</p>
This text has shadow with #B0AE5B color.
.textShadow {text-shadow: 3px 3px 1px #B0AE5B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B0AE5B, 5px 5px 20px red">Text here.</p>
This text has shadow with #B0AE5B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B0AE5B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B0AE5B, Direction=45, Strength=4)">Text</p>
This text has shadow with #B0AE5B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B0AE5B; -webkit-box-shadow: 1px 1px 3px 2px #B0AE5B; box-shadow: 1px 1px 3px 2px #B0AE5B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B0AE5B; -webkit-box-shadow: 1px 1px 3px 2px #B0AE5B; box-shadow:1px 1px 3px 2px #B0AE5B;">
Div content here</div>
This text has color #B0AE5B on black background.
This text has color #B0AE5B on white background.
This text has black color on #B0AE5B background.
This text has white color on #B0AE5B background.