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