HEX: #ADAEBC
RGB: (173,174,188)
#ADAEBC contains red, green and blue colors in about the same proportion. Web safe color of #ADAEBC is #9999CC (or #99C).
#ADAEBC color RGB value is (173,174,188).
RGB: (173,174,188) (68%,68%,74%)
R 173 of 255 = 68%
G 174 of 255 = 68%
B 188 of 255 = 74%
R + G + B ~ 70%. #ADAEBC is quite light color.
R + G + B =
173 + 174 + 188 = 535 (100%)
R 173 of 535 ~ 32.34%
G 174 of 535 ~ 32.52%
B 188 of 535 ~ 35.14%
#ADAEBC color CMYK value is (8,7,0,26).
CMYK: (8,7,0,26) C8M7Y0K26 (8%,7%,0%,26%) (0.08/0.07/0.00/0.26)
AD | AE | BC | |
---|---|---|---|
RGB | 173 | 174 | 188 |
HSL | 236° | 10.07% | 70.78% |
HSB/HSV | 236° | 7.98% | 73.73% |
CMYK | 7.98% | 7.45% | 0.00% |
26.27% |
HEX | AD | AE | BC |
Decimal | 173 | 174 | 188 |
Binary | 10101101 | 10101110 | 10111100 |
Octal | 255 | 256 | 274 |
Examples of css and html codes for elements with #ADAEBC color. Also use rgb(173,174,188) instead hex code.
.myTextColor { color: #ADAEBC; }
<p style="color:#ADAEBC">This sample text font color is #ADAEBC.</p>
This text font color is #ADAEBC.
.myBgColor { background-color: #ADAEBC; }
<div style="background-color:#ADAEBC">Inner text</div>
This div background color is #ADAEBC.
.myBorderColor { border: 1px solid #ADAEBC; }
<div style="border:3px solid #ADAEBC">Div</div>
This div border color is #ADAEBC.
.myOpacity80 { color: #ADAEBC; opacity: 0.8; }
<p style="color:#ADAEBC;opacity:0.8;">80%</p>
Text with #ADAEBC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADAEBC;}
<p style="text-shadow: 3px 3px 1px #ADAEBC">Text here.</p>
This text has shadow with #ADAEBC color.
.textShadow {text-shadow: 3px 3px 1px #ADAEBC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADAEBC, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADAEBC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADAEBC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADAEBC, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADAEBC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADAEBC; -webkit-box-shadow: 1px 1px 3px 2px #ADAEBC; box-shadow: 1px 1px 3px 2px #ADAEBC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADAEBC; -webkit-box-shadow: 1px 1px 3px 2px #ADAEBC; box-shadow:1px 1px 3px 2px #ADAEBC;">
Div content here</div>
This text has color #ADAEBC on black background.
This text has color #ADAEBC on white background.
This text has black color on #ADAEBC background.
This text has white color on #ADAEBC background.