HEX: #ACDCC6
RGB: (172,220,198)
#ACDCC6 contains red, green and blue colors in about the same proportion. Web safe color of #ACDCC6 is #99CCCC (or #9CC).
#ACDCC6 color RGB value is (172,220,198).
RGB: (172,220,198) (67%,86%,78%)
R 172 of 255 = 67%
G 220 of 255 = 86%
B 198 of 255 = 78%
R + G + B ~ 77%. #ACDCC6 is quite light color.
R + G + B =
172 + 220 + 198 = 590 (100%)
R 172 of 590 ~ 29.15%
G 220 of 590 ~ 37.29%
B 198 of 590 ~ 33.56%
#ACDCC6 color CMYK value is (22,0,10,14).
CMYK: (22,0,10,14) C22M0Y10K14 (22%,0%,10%,14%) (0.22/0.00/0.10/0.14)
AC | DC | C6 | |
---|---|---|---|
RGB | 172 | 220 | 198 |
HSL | 153° | 40.68% | 76.86% |
HSB/HSV | 153° | 21.82% | 86.27% |
CMYK | 21.82% | 0.00% | 10.00% |
13.73% |
HEX | AC | DC | C6 |
Decimal | 172 | 220 | 198 |
Binary | 10101100 | 11011100 | 11000110 |
Octal | 254 | 334 | 306 |
Examples of css and html codes for elements with #ACDCC6 color. Also use rgb(172,220,198) instead hex code.
.myTextColor { color: #ACDCC6; }
<p style="color:#ACDCC6">This sample text font color is #ACDCC6.</p>
This text font color is #ACDCC6.
.myBgColor { background-color: #ACDCC6; }
<div style="background-color:#ACDCC6">Inner text</div>
This div background color is #ACDCC6.
.myBorderColor { border: 1px solid #ACDCC6; }
<div style="border:3px solid #ACDCC6">Div</div>
This div border color is #ACDCC6.
.myOpacity80 { color: #ACDCC6; opacity: 0.8; }
<p style="color:#ACDCC6;opacity:0.8;">80%</p>
Text with #ACDCC6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACDCC6;}
<p style="text-shadow: 3px 3px 1px #ACDCC6">Text here.</p>
This text has shadow with #ACDCC6 color.
.textShadow {text-shadow: 3px 3px 1px #ACDCC6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACDCC6, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACDCC6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACDCC6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACDCC6, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACDCC6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACDCC6; -webkit-box-shadow: 1px 1px 3px 2px #ACDCC6; box-shadow: 1px 1px 3px 2px #ACDCC6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACDCC6; -webkit-box-shadow: 1px 1px 3px 2px #ACDCC6; box-shadow:1px 1px 3px 2px #ACDCC6;">
Div content here</div>
This text has color #ACDCC6 on black background.
This text has color #ACDCC6 on white background.
This text has black color on #ACDCC6 background.
This text has white color on #ACDCC6 background.