HEX: #ABD4DA
RGB: (171,212,218)
#ABD4DA contains red, green and blue colors in about the same proportion. Web safe color of #ABD4DA is #99CCCC (or #9CC).
#ABD4DA color RGB value is (171,212,218).
RGB: (171,212,218) (67%,83%,85%)
R 171 of 255 = 67%
G 212 of 255 = 83%
B 218 of 255 = 85%
R + G + B ~ 78%. #ABD4DA is quite light color.
R + G + B =
171 + 212 + 218 = 601 (100%)
R 171 of 601 ~ 28.45%
G 212 of 601 ~ 35.27%
B 218 of 601 ~ 36.27%
#ABD4DA color CMYK value is (22,3,0,15).
CMYK: (22,3,0,15) C22M3Y0K15 (22%,3%,0%,15%) (0.22/0.03/0.00/0.15)
AB | D4 | DA | |
---|---|---|---|
RGB | 171 | 212 | 218 |
HSL | 188° | 38.84% | 76.27% |
HSB/HSV | 188° | 21.56% | 85.49% |
CMYK | 21.56% | 2.75% | 0.00% |
14.51% |
HEX | AB | D4 | DA |
Decimal | 171 | 212 | 218 |
Binary | 10101011 | 11010100 | 11011010 |
Octal | 253 | 324 | 332 |
Examples of css and html codes for elements with #ABD4DA color. Also use rgb(171,212,218) instead hex code.
.myTextColor { color: #ABD4DA; }
<p style="color:#ABD4DA">This sample text font color is #ABD4DA.</p>
This text font color is #ABD4DA.
.myBgColor { background-color: #ABD4DA; }
<div style="background-color:#ABD4DA">Inner text</div>
This div background color is #ABD4DA.
.myBorderColor { border: 1px solid #ABD4DA; }
<div style="border:3px solid #ABD4DA">Div</div>
This div border color is #ABD4DA.
.myOpacity80 { color: #ABD4DA; opacity: 0.8; }
<p style="color:#ABD4DA;opacity:0.8;">80%</p>
Text with #ABD4DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABD4DA;}
<p style="text-shadow: 3px 3px 1px #ABD4DA">Text here.</p>
This text has shadow with #ABD4DA color.
.textShadow {text-shadow: 3px 3px 1px #ABD4DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABD4DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABD4DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABD4DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABD4DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABD4DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABD4DA; -webkit-box-shadow: 1px 1px 3px 2px #ABD4DA; box-shadow: 1px 1px 3px 2px #ABD4DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABD4DA; -webkit-box-shadow: 1px 1px 3px 2px #ABD4DA; box-shadow:1px 1px 3px 2px #ABD4DA;">
Div content here</div>
This text has color #ABD4DA on black background.
This text has color #ABD4DA on white background.
This text has black color on #ABD4DA background.
This text has white color on #ABD4DA background.