HEX: #ADCCF6
RGB: (173,204,246)
#ADCCF6 contains mainly green and blue colors. Web safe color of #ADCCF6 is #99CCFF (or #9CF).
#ADCCF6 color RGB value is (173,204,246).
RGB: (173,204,246) (68%,80%,96%)
R 173 of 255 = 68%
G 204 of 255 = 80%
B 246 of 255 = 96%
R + G + B ~ 81%. #ADCCF6 is quite light color.
R + G + B =
173 + 204 + 246 = 623 (100%)
R 173 of 623 ~ 27.77%
G 204 of 623 ~ 32.74%
B 246 of 623 ~ 39.49%
#ADCCF6 color CMYK value is (30,17,0,4).
CMYK: (30,17,0,4) C30M17Y0K4 (30%,17%,0%,4%) (0.30/0.17/0.00/0.04)
AD | CC | F6 | |
---|---|---|---|
RGB | 173 | 204 | 246 |
HSL | 215° | 80.22% | 82.16% |
HSB/HSV | 215° | 29.67% | 96.47% |
CMYK | 29.67% | 17.07% | 0.00% |
3.53% |
HEX | AD | CC | F6 |
Decimal | 173 | 204 | 246 |
Binary | 10101101 | 11001100 | 11110110 |
Octal | 255 | 314 | 366 |
Examples of css and html codes for elements with #ADCCF6 color. Also use rgb(173,204,246) instead hex code.
.myTextColor { color: #ADCCF6; }
<p style="color:#ADCCF6">This sample text font color is #ADCCF6.</p>
This text font color is #ADCCF6.
.myBgColor { background-color: #ADCCF6; }
<div style="background-color:#ADCCF6">Inner text</div>
This div background color is #ADCCF6.
.myBorderColor { border: 1px solid #ADCCF6; }
<div style="border:3px solid #ADCCF6">Div</div>
This div border color is #ADCCF6.
.myOpacity80 { color: #ADCCF6; opacity: 0.8; }
<p style="color:#ADCCF6;opacity:0.8;">80%</p>
Text with #ADCCF6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADCCF6;}
<p style="text-shadow: 3px 3px 1px #ADCCF6">Text here.</p>
This text has shadow with #ADCCF6 color.
.textShadow {text-shadow: 3px 3px 1px #ADCCF6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADCCF6, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADCCF6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADCCF6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADCCF6, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADCCF6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADCCF6; -webkit-box-shadow: 1px 1px 3px 2px #ADCCF6; box-shadow: 1px 1px 3px 2px #ADCCF6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADCCF6; -webkit-box-shadow: 1px 1px 3px 2px #ADCCF6; box-shadow:1px 1px 3px 2px #ADCCF6;">
Div content here</div>
This text has color #ADCCF6 on black background.
This text has color #ADCCF6 on white background.
This text has black color on #ADCCF6 background.
This text has white color on #ADCCF6 background.