HEX: #ADDDE3
RGB: (173,221,227)
#ADDDE3 contains red, green and blue colors in about the same proportion. Web safe color of #ADDDE3 is #99CCCC (or #9CC).
#ADDDE3 color RGB value is (173,221,227).
RGB: (173,221,227) (68%,87%,89%)
R 173 of 255 = 68%
G 221 of 255 = 87%
B 227 of 255 = 89%
R + G + B ~ 81%. #ADDDE3 is quite light color.
R + G + B =
173 + 221 + 227 = 621 (100%)
R 173 of 621 ~ 27.86%
G 221 of 621 ~ 35.59%
B 227 of 621 ~ 36.55%
#ADDDE3 color CMYK value is (24,3,0,11).
CMYK: (24,3,0,11) C24M3Y0K11 (24%,3%,0%,11%) (0.24/0.03/0.00/0.11)
AD | DD | E3 | |
---|---|---|---|
RGB | 173 | 221 | 227 |
HSL | 187° | 49.09% | 78.43% |
HSB/HSV | 187° | 23.79% | 89.02% |
CMYK | 23.79% | 2.64% | 0.00% |
10.98% |
HEX | AD | DD | E3 |
Decimal | 173 | 221 | 227 |
Binary | 10101101 | 11011101 | 11100011 |
Octal | 255 | 335 | 343 |
Examples of css and html codes for elements with #ADDDE3 color. Also use rgb(173,221,227) instead hex code.
.myTextColor { color: #ADDDE3; }
<p style="color:#ADDDE3">This sample text font color is #ADDDE3.</p>
This text font color is #ADDDE3.
.myBgColor { background-color: #ADDDE3; }
<div style="background-color:#ADDDE3">Inner text</div>
This div background color is #ADDDE3.
.myBorderColor { border: 1px solid #ADDDE3; }
<div style="border:3px solid #ADDDE3">Div</div>
This div border color is #ADDDE3.
.myOpacity80 { color: #ADDDE3; opacity: 0.8; }
<p style="color:#ADDDE3;opacity:0.8;">80%</p>
Text with #ADDDE3 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADDDE3;}
<p style="text-shadow: 3px 3px 1px #ADDDE3">Text here.</p>
This text has shadow with #ADDDE3 color.
.textShadow {text-shadow: 3px 3px 1px #ADDDE3, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADDDE3, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADDDE3 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADDDE3, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADDDE3, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADDDE3 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADDDE3; -webkit-box-shadow: 1px 1px 3px 2px #ADDDE3; box-shadow: 1px 1px 3px 2px #ADDDE3; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADDDE3; -webkit-box-shadow: 1px 1px 3px 2px #ADDDE3; box-shadow:1px 1px 3px 2px #ADDDE3;">
Div content here</div>
This text has color #ADDDE3 on black background.
This text has color #ADDDE3 on white background.
This text has black color on #ADDDE3 background.
This text has white color on #ADDDE3 background.