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