HEX: #ABC7DE
RGB: (171,199,222)
#ABC7DE contains red, green and blue colors in about the same proportion. Web safe color of #ABC7DE is #99CCCC (or #9CC).
#ABC7DE color RGB value is (171,199,222).
RGB: (171,199,222) (67%,78%,87%)
R 171 of 255 = 67%
G 199 of 255 = 78%
B 222 of 255 = 87%
R + G + B ~ 77%. #ABC7DE is quite light color.
R + G + B =
171 + 199 + 222 = 592 (100%)
R 171 of 592 ~ 28.89%
G 199 of 592 ~ 33.61%
B 222 of 592 ~ 37.5%
#ABC7DE color CMYK value is (23,10,0,13).
CMYK: (23,10,0,13) C23M10Y0K13 (23%,10%,0%,13%) (0.23/0.10/0.00/0.13)
AB | C7 | DE | |
---|---|---|---|
RGB | 171 | 199 | 222 |
HSL | 207° | 43.59% | 77.06% |
HSB/HSV | 207° | 22.97% | 87.06% |
CMYK | 22.97% | 10.36% | 0.00% |
12.94% |
HEX | AB | C7 | DE |
Decimal | 171 | 199 | 222 |
Binary | 10101011 | 11000111 | 11011110 |
Octal | 253 | 307 | 336 |
Examples of css and html codes for elements with #ABC7DE color. Also use rgb(171,199,222) instead hex code.
.myTextColor { color: #ABC7DE; }
<p style="color:#ABC7DE">This sample text font color is #ABC7DE.</p>
This text font color is #ABC7DE.
.myBgColor { background-color: #ABC7DE; }
<div style="background-color:#ABC7DE">Inner text</div>
This div background color is #ABC7DE.
.myBorderColor { border: 1px solid #ABC7DE; }
<div style="border:3px solid #ABC7DE">Div</div>
This div border color is #ABC7DE.
.myOpacity80 { color: #ABC7DE; opacity: 0.8; }
<p style="color:#ABC7DE;opacity:0.8;">80%</p>
Text with #ABC7DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABC7DE;}
<p style="text-shadow: 3px 3px 1px #ABC7DE">Text here.</p>
This text has shadow with #ABC7DE color.
.textShadow {text-shadow: 3px 3px 1px #ABC7DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABC7DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABC7DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABC7DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABC7DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABC7DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABC7DE; -webkit-box-shadow: 1px 1px 3px 2px #ABC7DE; box-shadow: 1px 1px 3px 2px #ABC7DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABC7DE; -webkit-box-shadow: 1px 1px 3px 2px #ABC7DE; box-shadow:1px 1px 3px 2px #ABC7DE;">
Div content here</div>
This text has color #ABC7DE on black background.
This text has color #ABC7DE on white background.
This text has black color on #ABC7DE background.
This text has white color on #ABC7DE background.