HEX: #ADDAFF
RGB: (173,218,255)
#ADDAFF contains mainly green and blue colors. Web safe color of #ADDAFF is #99CCFF (or #9CF).
#ADDAFF color RGB value is (173,218,255).
RGB: (173,218,255) (68%,85%,100%)
R 173 of 255 = 68%
G 218 of 255 = 85%
B 255 of 255 = 100%
R + G + B ~ 84%. #ADDAFF is quite light color.
R + G + B =
173 + 218 + 255 = 646 (100%)
R 173 of 646 ~ 26.78%
G 218 of 646 ~ 33.75%
B 255 of 646 ~ 39.47%
#ADDAFF color CMYK value is (32,15,0,0).
CMYK: (32,15,0,0) C32M15Y0K0 (32%,15%,0%,0%) (0.32/0.15/0.00/0.00)
AD | DA | FF | |
---|---|---|---|
RGB | 173 | 218 | 255 |
HSL | 207° | 100.00% | 83.92% |
HSB/HSV | 207° | 32.16% | 100.00% |
CMYK | 32.16% | 14.51% | 0.00% |
0.00% |
HEX | AD | DA | FF |
Decimal | 173 | 218 | 255 |
Binary | 10101101 | 11011010 | 11111111 |
Octal | 255 | 332 | 377 |
Examples of css and html codes for elements with #ADDAFF color. Also use rgb(173,218,255) instead hex code.
.myTextColor { color: #ADDAFF; }
<p style="color:#ADDAFF">This sample text font color is #ADDAFF.</p>
This text font color is #ADDAFF.
.myBgColor { background-color: #ADDAFF; }
<div style="background-color:#ADDAFF">Inner text</div>
This div background color is #ADDAFF.
.myBorderColor { border: 1px solid #ADDAFF; }
<div style="border:3px solid #ADDAFF">Div</div>
This div border color is #ADDAFF.
.myOpacity80 { color: #ADDAFF; opacity: 0.8; }
<p style="color:#ADDAFF;opacity:0.8;">80%</p>
Text with #ADDAFF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADDAFF;}
<p style="text-shadow: 3px 3px 1px #ADDAFF">Text here.</p>
This text has shadow with #ADDAFF color.
.textShadow {text-shadow: 3px 3px 1px #ADDAFF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADDAFF, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADDAFF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADDAFF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADDAFF, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADDAFF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADDAFF; -webkit-box-shadow: 1px 1px 3px 2px #ADDAFF; box-shadow: 1px 1px 3px 2px #ADDAFF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADDAFF; -webkit-box-shadow: 1px 1px 3px 2px #ADDAFF; box-shadow:1px 1px 3px 2px #ADDAFF;">
Div content here</div>
This text has color #ADDAFF on black background.
This text has color #ADDAFF on white background.
This text has black color on #ADDAFF background.
This text has white color on #ADDAFF background.