HEX: #ACB8CC
RGB: (172,184,204)
#ACB8CC contains red, green and blue colors in about the same proportion. Web safe color of #ACB8CC is #99CCCC (or #9CC).
#ACB8CC color RGB value is (172,184,204).
RGB: (172,184,204) (67%,72%,80%)
R 172 of 255 = 67%
G 184 of 255 = 72%
B 204 of 255 = 80%
R + G + B ~ 73%. #ACB8CC is quite light color.
R + G + B =
172 + 184 + 204 = 560 (100%)
R 172 of 560 ~ 30.71%
G 184 of 560 ~ 32.86%
B 204 of 560 ~ 36.43%
#ACB8CC color CMYK value is (16,10,0,20).
CMYK: (16,10,0,20) C16M10Y0K20 (16%,10%,0%,20%) (0.16/0.10/0.00/0.20)
AC | B8 | CC | |
---|---|---|---|
RGB | 172 | 184 | 204 |
HSL | 218° | 23.88% | 73.73% |
HSB/HSV | 218° | 15.69% | 80.00% |
CMYK | 15.69% | 9.80% | 0.00% |
20.00% |
HEX | AC | B8 | CC |
Decimal | 172 | 184 | 204 |
Binary | 10101100 | 10111000 | 11001100 |
Octal | 254 | 270 | 314 |
Examples of css and html codes for elements with #ACB8CC color. Also use rgb(172,184,204) instead hex code.
.myTextColor { color: #ACB8CC; }
<p style="color:#ACB8CC">This sample text font color is #ACB8CC.</p>
This text font color is #ACB8CC.
.myBgColor { background-color: #ACB8CC; }
<div style="background-color:#ACB8CC">Inner text</div>
This div background color is #ACB8CC.
.myBorderColor { border: 1px solid #ACB8CC; }
<div style="border:3px solid #ACB8CC">Div</div>
This div border color is #ACB8CC.
.myOpacity80 { color: #ACB8CC; opacity: 0.8; }
<p style="color:#ACB8CC;opacity:0.8;">80%</p>
Text with #ACB8CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACB8CC;}
<p style="text-shadow: 3px 3px 1px #ACB8CC">Text here.</p>
This text has shadow with #ACB8CC color.
.textShadow {text-shadow: 3px 3px 1px #ACB8CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACB8CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACB8CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACB8CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACB8CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACB8CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACB8CC; -webkit-box-shadow: 1px 1px 3px 2px #ACB8CC; box-shadow: 1px 1px 3px 2px #ACB8CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACB8CC; -webkit-box-shadow: 1px 1px 3px 2px #ACB8CC; box-shadow:1px 1px 3px 2px #ACB8CC;">
Div content here</div>
This text has color #ACB8CC on black background.
This text has color #ACB8CC on white background.
This text has black color on #ACB8CC background.
This text has white color on #ACB8CC background.