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