HEX: #AC697B
RGB: (172,105,123)
#AC697B contains mainly red and blue colors. Web safe color of #AC697B is #996666 (or #966).
#AC697B color RGB value is (172,105,123).
RGB: (172,105,123) (67%,41%,48%)
R 172 of 255 = 67%
G 105 of 255 = 41%
B 123 of 255 = 48%
R + G + B ~ 52%. #AC697B is middle color (not dark and not light).
R + G + B =
172 + 105 + 123 = 400 (100%)
R 172 of 400 ~ 43%
G 105 of 400 ~ 26.25%
B 123 of 400 ~ 30.75%
#AC697B color CMYK value is (0,39,28,33).
CMYK: (0,39,28,33) C0M39Y28K33 (0%,39%,28%,33%) (0.00/0.39/0.28/0.33)
AC | 69 | 7B | |
---|---|---|---|
RGB | 172 | 105 | 123 |
HSL | 344° | 28.76% | 54.31% |
HSB/HSV | 344° | 38.95% | 67.45% |
CMYK | 0.00% | 38.95% | 28.49% |
32.55% |
HEX | AC | 69 | 7B |
Decimal | 172 | 105 | 123 |
Binary | 10101100 | 1101001 | 1111011 |
Octal | 254 | 151 | 173 |
Examples of css and html codes for elements with #AC697B color. Also use rgb(172,105,123) instead hex code.
.myTextColor { color: #AC697B; }
<p style="color:#AC697B">This sample text font color is #AC697B.</p>
This text font color is #AC697B.
.myBgColor { background-color: #AC697B; }
<div style="background-color:#AC697B">Inner text</div>
This div background color is #AC697B.
.myBorderColor { border: 1px solid #AC697B; }
<div style="border:3px solid #AC697B">Div</div>
This div border color is #AC697B.
.myOpacity80 { color: #AC697B; opacity: 0.8; }
<p style="color:#AC697B;opacity:0.8;">80%</p>
Text with #AC697B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AC697B;}
<p style="text-shadow: 3px 3px 1px #AC697B">Text here.</p>
This text has shadow with #AC697B color.
.textShadow {text-shadow: 3px 3px 1px #AC697B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AC697B, 5px 5px 20px red">Text here.</p>
This text has shadow with #AC697B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AC697B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AC697B, Direction=45, Strength=4)">Text</p>
This text has shadow with #AC697B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AC697B; -webkit-box-shadow: 1px 1px 3px 2px #AC697B; box-shadow: 1px 1px 3px 2px #AC697B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AC697B; -webkit-box-shadow: 1px 1px 3px 2px #AC697B; box-shadow:1px 1px 3px 2px #AC697B;">
Div content here</div>
This text has color #AC697B on black background.
This text has color #AC697B on white background.
This text has black color on #AC697B background.
This text has white color on #AC697B background.