HEX: #ACCDD2
RGB: (172,205,210)
#ACCDD2 contains red, green and blue colors in about the same proportion. Web safe color of #ACCDD2 is #99CCCC (or #9CC).
#ACCDD2 color RGB value is (172,205,210).
RGB: (172,205,210) (67%,80%,82%)
R 172 of 255 = 67%
G 205 of 255 = 80%
B 210 of 255 = 82%
R + G + B ~ 76%. #ACCDD2 is quite light color.
R + G + B =
172 + 205 + 210 = 587 (100%)
R 172 of 587 ~ 29.3%
G 205 of 587 ~ 34.92%
B 210 of 587 ~ 35.78%
#ACCDD2 color CMYK value is (18,2,0,18).
CMYK: (18,2,0,18) C18M2Y0K18 (18%,2%,0%,18%) (0.18/0.02/0.00/0.18)
AC | CD | D2 | |
---|---|---|---|
RGB | 172 | 205 | 210 |
HSL | 188° | 29.69% | 74.90% |
HSB/HSV | 188° | 18.10% | 82.35% |
CMYK | 18.10% | 2.38% | 0.00% |
17.65% |
HEX | AC | CD | D2 |
Decimal | 172 | 205 | 210 |
Binary | 10101100 | 11001101 | 11010010 |
Octal | 254 | 315 | 322 |
Examples of css and html codes for elements with #ACCDD2 color. Also use rgb(172,205,210) instead hex code.
.myTextColor { color: #ACCDD2; }
<p style="color:#ACCDD2">This sample text font color is #ACCDD2.</p>
This text font color is #ACCDD2.
.myBgColor { background-color: #ACCDD2; }
<div style="background-color:#ACCDD2">Inner text</div>
This div background color is #ACCDD2.
.myBorderColor { border: 1px solid #ACCDD2; }
<div style="border:3px solid #ACCDD2">Div</div>
This div border color is #ACCDD2.
.myOpacity80 { color: #ACCDD2; opacity: 0.8; }
<p style="color:#ACCDD2;opacity:0.8;">80%</p>
Text with #ACCDD2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACCDD2;}
<p style="text-shadow: 3px 3px 1px #ACCDD2">Text here.</p>
This text has shadow with #ACCDD2 color.
.textShadow {text-shadow: 3px 3px 1px #ACCDD2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACCDD2, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACCDD2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACCDD2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACCDD2, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACCDD2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACCDD2; -webkit-box-shadow: 1px 1px 3px 2px #ACCDD2; box-shadow: 1px 1px 3px 2px #ACCDD2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACCDD2; -webkit-box-shadow: 1px 1px 3px 2px #ACCDD2; box-shadow:1px 1px 3px 2px #ACCDD2;">
Div content here</div>
This text has color #ACCDD2 on black background.
This text has color #ACCDD2 on white background.
This text has black color on #ACCDD2 background.
This text has white color on #ACCDD2 background.