HEX: #ABD5FF
RGB: (171,213,255)
#ABD5FF contains mainly green and blue colors. Web safe color of #ABD5FF is #99CCFF (or #9CF).
#ABD5FF color RGB value is (171,213,255).
RGB: (171,213,255) (67%,84%,100%)
R 171 of 255 = 67%
G 213 of 255 = 84%
B 255 of 255 = 100%
R + G + B ~ 84%. #ABD5FF is quite light color.
R + G + B =
171 + 213 + 255 = 639 (100%)
R 171 of 639 ~ 26.76%
G 213 of 639 ~ 33.33%
B 255 of 639 ~ 39.91%
#ABD5FF color CMYK value is (33,16,0,0).
CMYK: (33,16,0,0) C33M16Y0K0 (33%,16%,0%,0%) (0.33/0.16/0.00/0.00)
AB | D5 | FF | |
---|---|---|---|
RGB | 171 | 213 | 255 |
HSL | 210° | 100.00% | 83.53% |
HSB/HSV | 210° | 32.94% | 100.00% |
CMYK | 32.94% | 16.47% | 0.00% |
0.00% |
HEX | AB | D5 | FF |
Decimal | 171 | 213 | 255 |
Binary | 10101011 | 11010101 | 11111111 |
Octal | 253 | 325 | 377 |
Examples of css and html codes for elements with #ABD5FF color. Also use rgb(171,213,255) instead hex code.
.myTextColor { color: #ABD5FF; }
<p style="color:#ABD5FF">This sample text font color is #ABD5FF.</p>
This text font color is #ABD5FF.
.myBgColor { background-color: #ABD5FF; }
<div style="background-color:#ABD5FF">Inner text</div>
This div background color is #ABD5FF.
.myBorderColor { border: 1px solid #ABD5FF; }
<div style="border:3px solid #ABD5FF">Div</div>
This div border color is #ABD5FF.
.myOpacity80 { color: #ABD5FF; opacity: 0.8; }
<p style="color:#ABD5FF;opacity:0.8;">80%</p>
Text with #ABD5FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABD5FF;}
<p style="text-shadow: 3px 3px 1px #ABD5FF">Text here.</p>
This text has shadow with #ABD5FF color.
.textShadow {text-shadow: 3px 3px 1px #ABD5FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABD5FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABD5FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABD5FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABD5FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABD5FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABD5FF; -webkit-box-shadow: 1px 1px 3px 2px #ABD5FF; box-shadow: 1px 1px 3px 2px #ABD5FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABD5FF; -webkit-box-shadow: 1px 1px 3px 2px #ABD5FF; box-shadow:1px 1px 3px 2px #ABD5FF;">
Div content here</div>
This text has color #ABD5FF on black background.
This text has color #ABD5FF on white background.
This text has black color on #ABD5FF background.
This text has white color on #ABD5FF background.