HEX: #AFCDCC
RGB: (175,205,204)
#AFCDCC contains red, green and blue colors in about the same proportion. Web safe color of #AFCDCC is #99CCCC (or #9CC).
#AFCDCC color RGB value is (175,205,204).
RGB: (175,205,204) (69%,80%,80%)
R 175 of 255 = 69%
G 205 of 255 = 80%
B 204 of 255 = 80%
R + G + B ~ 76%. #AFCDCC is quite light color.
R + G + B =
175 + 205 + 204 = 584 (100%)
R 175 of 584 ~ 29.97%
G 205 of 584 ~ 35.1%
B 204 of 584 ~ 34.93%
#AFCDCC color CMYK value is (15,0,0,20).
CMYK: (15,0,0,20) C15M0Y0K20 (15%,0%,0%,20%) (0.15/0.00/0.00/0.20)
AF | CD | CC | |
---|---|---|---|
RGB | 175 | 205 | 204 |
HSL | 178° | 23.08% | 74.51% |
HSB/HSV | 178° | 14.63% | 80.39% |
CMYK | 14.63% | 0.00% | 0.49% |
19.61% |
HEX | AF | CD | CC |
Decimal | 175 | 205 | 204 |
Binary | 10101111 | 11001101 | 11001100 |
Octal | 257 | 315 | 314 |
Examples of css and html codes for elements with #AFCDCC color. Also use rgb(175,205,204) instead hex code.
.myTextColor { color: #AFCDCC; }
<p style="color:#AFCDCC">This sample text font color is #AFCDCC.</p>
This text font color is #AFCDCC.
.myBgColor { background-color: #AFCDCC; }
<div style="background-color:#AFCDCC">Inner text</div>
This div background color is #AFCDCC.
.myBorderColor { border: 1px solid #AFCDCC; }
<div style="border:3px solid #AFCDCC">Div</div>
This div border color is #AFCDCC.
.myOpacity80 { color: #AFCDCC; opacity: 0.8; }
<p style="color:#AFCDCC;opacity:0.8;">80%</p>
Text with #AFCDCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFCDCC;}
<p style="text-shadow: 3px 3px 1px #AFCDCC">Text here.</p>
This text has shadow with #AFCDCC color.
.textShadow {text-shadow: 3px 3px 1px #AFCDCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFCDCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFCDCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFCDCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFCDCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFCDCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFCDCC; -webkit-box-shadow: 1px 1px 3px 2px #AFCDCC; box-shadow: 1px 1px 3px 2px #AFCDCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFCDCC; -webkit-box-shadow: 1px 1px 3px 2px #AFCDCC; box-shadow:1px 1px 3px 2px #AFCDCC;">
Div content here</div>
This text has color #AFCDCC on black background.
This text has color #AFCDCC on white background.
This text has black color on #AFCDCC background.
This text has white color on #AFCDCC background.