HEX: #AFE5CC
RGB: (175,229,204)
#AFE5CC contains red, green and blue colors in about the same proportion. Web safe color of #AFE5CC is #99CCCC (or #9CC).
#AFE5CC color RGB value is (175,229,204).
RGB: (175,229,204) (69%,90%,80%)
R 175 of 255 = 69%
G 229 of 255 = 90%
B 204 of 255 = 80%
R + G + B ~ 80%. #AFE5CC is quite light color.
R + G + B =
175 + 229 + 204 = 608 (100%)
R 175 of 608 ~ 28.78%
G 229 of 608 ~ 37.66%
B 204 of 608 ~ 33.55%
#AFE5CC color CMYK value is (24,0,11,10).
CMYK: (24,0,11,10) C24M0Y11K10 (24%,0%,11%,10%) (0.24/0.00/0.11/0.10)
AF | E5 | CC | |
---|---|---|---|
RGB | 175 | 229 | 204 |
HSL | 152° | 50.94% | 79.22% |
HSB/HSV | 152° | 23.58% | 89.80% |
CMYK | 23.58% | 0.00% | 10.92% |
10.20% |
HEX | AF | E5 | CC |
Decimal | 175 | 229 | 204 |
Binary | 10101111 | 11100101 | 11001100 |
Octal | 257 | 345 | 314 |
Examples of css and html codes for elements with #AFE5CC color. Also use rgb(175,229,204) instead hex code.
.myTextColor { color: #AFE5CC; }
<p style="color:#AFE5CC">This sample text font color is #AFE5CC.</p>
This text font color is #AFE5CC.
.myBgColor { background-color: #AFE5CC; }
<div style="background-color:#AFE5CC">Inner text</div>
This div background color is #AFE5CC.
.myBorderColor { border: 1px solid #AFE5CC; }
<div style="border:3px solid #AFE5CC">Div</div>
This div border color is #AFE5CC.
.myOpacity80 { color: #AFE5CC; opacity: 0.8; }
<p style="color:#AFE5CC;opacity:0.8;">80%</p>
Text with #AFE5CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFE5CC;}
<p style="text-shadow: 3px 3px 1px #AFE5CC">Text here.</p>
This text has shadow with #AFE5CC color.
.textShadow {text-shadow: 3px 3px 1px #AFE5CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFE5CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFE5CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFE5CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFE5CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFE5CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFE5CC; -webkit-box-shadow: 1px 1px 3px 2px #AFE5CC; box-shadow: 1px 1px 3px 2px #AFE5CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFE5CC; -webkit-box-shadow: 1px 1px 3px 2px #AFE5CC; box-shadow:1px 1px 3px 2px #AFE5CC;">
Div content here</div>
This text has color #AFE5CC on black background.
This text has color #AFE5CC on white background.
This text has black color on #AFE5CC background.
This text has white color on #AFE5CC background.