HEX: #AC807C
RGB: (172,128,124)
#AC807C contains red, green and blue colors in about the same proportion. Web safe color of #AC807C is #996666 (or #966).
#AC807C color RGB value is (172,128,124).
RGB: (172,128,124) (67%,50%,49%)
R 172 of 255 = 67%
G 128 of 255 = 50%
B 124 of 255 = 49%
R + G + B ~ 55%. #AC807C is middle color (not dark and not light).
R + G + B =
172 + 128 + 124 = 424 (100%)
R 172 of 424 ~ 40.57%
G 128 of 424 ~ 30.19%
B 124 of 424 ~ 29.25%
#AC807C color CMYK value is (0,26,28,33).
CMYK: (0,26,28,33) C0M26Y28K33 (0%,26%,28%,33%) (0.00/0.26/0.28/0.33)
AC | 80 | 7C | |
---|---|---|---|
RGB | 172 | 128 | 124 |
HSL | 5° | 22.43% | 58.04% |
HSB/HSV | 5° | 27.91% | 67.45% |
CMYK | 0.00% | 25.58% | 27.91% |
32.55% |
HEX | AC | 80 | 7C |
Decimal | 172 | 128 | 124 |
Binary | 10101100 | 10000000 | 1111100 |
Octal | 254 | 200 | 174 |
Examples of css and html codes for elements with #AC807C color. Also use rgb(172,128,124) instead hex code.
.myTextColor { color: #AC807C; }
<p style="color:#AC807C">This sample text font color is #AC807C.</p>
This text font color is #AC807C.
.myBgColor { background-color: #AC807C; }
<div style="background-color:#AC807C">Inner text</div>
This div background color is #AC807C.
.myBorderColor { border: 1px solid #AC807C; }
<div style="border:3px solid #AC807C">Div</div>
This div border color is #AC807C.
.myOpacity80 { color: #AC807C; opacity: 0.8; }
<p style="color:#AC807C;opacity:0.8;">80%</p>
Text with #AC807C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AC807C;}
<p style="text-shadow: 3px 3px 1px #AC807C">Text here.</p>
This text has shadow with #AC807C color.
.textShadow {text-shadow: 3px 3px 1px #AC807C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AC807C, 5px 5px 20px red">Text here.</p>
This text has shadow with #AC807C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AC807C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AC807C, Direction=45, Strength=4)">Text</p>
This text has shadow with #AC807C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AC807C; -webkit-box-shadow: 1px 1px 3px 2px #AC807C; box-shadow: 1px 1px 3px 2px #AC807C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AC807C; -webkit-box-shadow: 1px 1px 3px 2px #AC807C; box-shadow:1px 1px 3px 2px #AC807C;">
Div content here</div>
This text has color #AC807C on black background.
This text has color #AC807C on white background.
This text has black color on #AC807C background.
This text has white color on #AC807C background.