HEX: #ADCCC6
RGB: (173,204,198)
#ADCCC6 contains red, green and blue colors in about the same proportion. Web safe color of #ADCCC6 is #99CCCC (or #9CC).
#ADCCC6 color RGB value is (173,204,198).
RGB: (173,204,198) (68%,80%,78%)
R 173 of 255 = 68%
G 204 of 255 = 80%
B 198 of 255 = 78%
R + G + B ~ 75%. #ADCCC6 is quite light color.
R + G + B =
173 + 204 + 198 = 575 (100%)
R 173 of 575 ~ 30.09%
G 204 of 575 ~ 35.48%
B 198 of 575 ~ 34.43%
#ADCCC6 color CMYK value is (15,0,3,20).
CMYK: (15,0,3,20) C15M0Y3K20 (15%,0%,3%,20%) (0.15/0.00/0.03/0.20)
AD | CC | C6 | |
---|---|---|---|
RGB | 173 | 204 | 198 |
HSL | 168° | 23.31% | 73.92% |
HSB/HSV | 168° | 15.20% | 80.00% |
CMYK | 15.20% | 0.00% | 2.94% |
20.00% |
HEX | AD | CC | C6 |
Decimal | 173 | 204 | 198 |
Binary | 10101101 | 11001100 | 11000110 |
Octal | 255 | 314 | 306 |
Examples of css and html codes for elements with #ADCCC6 color. Also use rgb(173,204,198) instead hex code.
.myTextColor { color: #ADCCC6; }
<p style="color:#ADCCC6">This sample text font color is #ADCCC6.</p>
This text font color is #ADCCC6.
.myBgColor { background-color: #ADCCC6; }
<div style="background-color:#ADCCC6">Inner text</div>
This div background color is #ADCCC6.
.myBorderColor { border: 1px solid #ADCCC6; }
<div style="border:3px solid #ADCCC6">Div</div>
This div border color is #ADCCC6.
.myOpacity80 { color: #ADCCC6; opacity: 0.8; }
<p style="color:#ADCCC6;opacity:0.8;">80%</p>
Text with #ADCCC6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADCCC6;}
<p style="text-shadow: 3px 3px 1px #ADCCC6">Text here.</p>
This text has shadow with #ADCCC6 color.
.textShadow {text-shadow: 3px 3px 1px #ADCCC6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADCCC6, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADCCC6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADCCC6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADCCC6, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADCCC6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADCCC6; -webkit-box-shadow: 1px 1px 3px 2px #ADCCC6; box-shadow: 1px 1px 3px 2px #ADCCC6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADCCC6; -webkit-box-shadow: 1px 1px 3px 2px #ADCCC6; box-shadow:1px 1px 3px 2px #ADCCC6;">
Div content here</div>
This text has color #ADCCC6 on black background.
This text has color #ADCCC6 on white background.
This text has black color on #ADCCC6 background.
This text has white color on #ADCCC6 background.