HEX: #ADBCBF
RGB: (173,188,191)
#ADBCBF contains red, green and blue colors in about the same proportion. Web safe color of #ADBCBF is #99CCCC (or #9CC).
#ADBCBF color RGB value is (173,188,191).
RGB: (173,188,191) (68%,74%,75%)
R 173 of 255 = 68%
G 188 of 255 = 74%
B 191 of 255 = 75%
R + G + B ~ 72%. #ADBCBF is quite light color.
R + G + B =
173 + 188 + 191 = 552 (100%)
R 173 of 552 ~ 31.34%
G 188 of 552 ~ 34.06%
B 191 of 552 ~ 34.6%
#ADBCBF color CMYK value is (9,2,0,25).
CMYK: (9,2,0,25) C9M2Y0K25 (9%,2%,0%,25%) (0.09/0.02/0.00/0.25)
AD | BC | BF | |
---|---|---|---|
RGB | 173 | 188 | 191 |
HSL | 190° | 12.33% | 71.37% |
HSB/HSV | 190° | 9.42% | 74.90% |
CMYK | 9.42% | 1.57% | 0.00% |
25.10% |
HEX | AD | BC | BF |
Decimal | 173 | 188 | 191 |
Binary | 10101101 | 10111100 | 10111111 |
Octal | 255 | 274 | 277 |
Examples of css and html codes for elements with #ADBCBF color. Also use rgb(173,188,191) instead hex code.
.myTextColor { color: #ADBCBF; }
<p style="color:#ADBCBF">This sample text font color is #ADBCBF.</p>
This text font color is #ADBCBF.
.myBgColor { background-color: #ADBCBF; }
<div style="background-color:#ADBCBF">Inner text</div>
This div background color is #ADBCBF.
.myBorderColor { border: 1px solid #ADBCBF; }
<div style="border:3px solid #ADBCBF">Div</div>
This div border color is #ADBCBF.
.myOpacity80 { color: #ADBCBF; opacity: 0.8; }
<p style="color:#ADBCBF;opacity:0.8;">80%</p>
Text with #ADBCBF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADBCBF;}
<p style="text-shadow: 3px 3px 1px #ADBCBF">Text here.</p>
This text has shadow with #ADBCBF color.
.textShadow {text-shadow: 3px 3px 1px #ADBCBF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADBCBF, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADBCBF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADBCBF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADBCBF, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADBCBF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADBCBF; -webkit-box-shadow: 1px 1px 3px 2px #ADBCBF; box-shadow: 1px 1px 3px 2px #ADBCBF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADBCBF; -webkit-box-shadow: 1px 1px 3px 2px #ADBCBF; box-shadow:1px 1px 3px 2px #ADBCBF;">
Div content here</div>
This text has color #ADBCBF on black background.
This text has color #ADBCBF on white background.
This text has black color on #ADBCBF background.
This text has white color on #ADBCBF background.