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