HEX: #B4ACAA
RGB: (180,172,170)
#B4ACAA contains red, green and blue colors in about the same proportion. Web safe color of #B4ACAA is #CC9999 (or #C99).
#B4ACAA color RGB value is (180,172,170).
RGB: (180,172,170) (71%,67%,67%)
R 180 of 255 = 71%
G 172 of 255 = 67%
B 170 of 255 = 67%
R + G + B ~ 68%. #B4ACAA is quite light color.
R + G + B =
180 + 172 + 170 = 522 (100%)
R 180 of 522 ~ 34.48%
G 172 of 522 ~ 32.95%
B 170 of 522 ~ 32.57%
#B4ACAA color CMYK value is (0,4,6,29).
CMYK: (0,4,6,29) C0M4Y6K29 (0%,4%,6%,29%) (0.00/0.04/0.06/0.29)
B4 | AC | AA | |
---|---|---|---|
RGB | 180 | 172 | 170 |
HSL | 12° | 6.25% | 68.63% |
HSB/HSV | 12° | 5.56% | 70.59% |
CMYK | 0.00% | 4.44% | 5.56% |
29.41% |
HEX | B4 | AC | AA |
Decimal | 180 | 172 | 170 |
Binary | 10110100 | 10101100 | 10101010 |
Octal | 264 | 254 | 252 |
Examples of css and html codes for elements with #B4ACAA color. Also use rgb(180,172,170) instead hex code.
.myTextColor { color: #B4ACAA; }
<p style="color:#B4ACAA">This sample text font color is #B4ACAA.</p>
This text font color is #B4ACAA.
.myBgColor { background-color: #B4ACAA; }
<div style="background-color:#B4ACAA">Inner text</div>
This div background color is #B4ACAA.
.myBorderColor { border: 1px solid #B4ACAA; }
<div style="border:3px solid #B4ACAA">Div</div>
This div border color is #B4ACAA.
.myOpacity80 { color: #B4ACAA; opacity: 0.8; }
<p style="color:#B4ACAA;opacity:0.8;">80%</p>
Text with #B4ACAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4ACAA;}
<p style="text-shadow: 3px 3px 1px #B4ACAA">Text here.</p>
This text has shadow with #B4ACAA color.
.textShadow {text-shadow: 3px 3px 1px #B4ACAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4ACAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4ACAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4ACAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4ACAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4ACAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4ACAA; -webkit-box-shadow: 1px 1px 3px 2px #B4ACAA; box-shadow: 1px 1px 3px 2px #B4ACAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4ACAA; -webkit-box-shadow: 1px 1px 3px 2px #B4ACAA; box-shadow:1px 1px 3px 2px #B4ACAA;">
Div content here</div>
This text has color #B4ACAA on black background.
This text has color #B4ACAA on white background.
This text has black color on #B4ACAA background.
This text has white color on #B4ACAA background.