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