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