HEX: #ACBDAE
RGB: (172,189,174)
#ACBDAE contains red, green and blue colors in about the same proportion. Web safe color of #ACBDAE is #99CC99 (or #9C9).
#ACBDAE color RGB value is (172,189,174).
RGB: (172,189,174) (67%,74%,68%)
R 172 of 255 = 67%
G 189 of 255 = 74%
B 174 of 255 = 68%
R + G + B ~ 70%. #ACBDAE is quite light color.
R + G + B =
172 + 189 + 174 = 535 (100%)
R 172 of 535 ~ 32.15%
G 189 of 535 ~ 35.33%
B 174 of 535 ~ 32.52%
#ACBDAE color CMYK value is (9,0,8,26).
CMYK: (9,0,8,26) C9M0Y8K26 (9%,0%,8%,26%) (0.09/0.00/0.08/0.26)
AC | BD | AE | |
---|---|---|---|
RGB | 172 | 189 | 174 |
HSL | 127° | 11.41% | 70.78% |
HSB/HSV | 127° | 8.99% | 74.12% |
CMYK | 8.99% | 0.00% | 7.94% |
25.88% |
HEX | AC | BD | AE |
Decimal | 172 | 189 | 174 |
Binary | 10101100 | 10111101 | 10101110 |
Octal | 254 | 275 | 256 |
Examples of css and html codes for elements with #ACBDAE color. Also use rgb(172,189,174) instead hex code.
.myTextColor { color: #ACBDAE; }
<p style="color:#ACBDAE">This sample text font color is #ACBDAE.</p>
This text font color is #ACBDAE.
.myBgColor { background-color: #ACBDAE; }
<div style="background-color:#ACBDAE">Inner text</div>
This div background color is #ACBDAE.
.myBorderColor { border: 1px solid #ACBDAE; }
<div style="border:3px solid #ACBDAE">Div</div>
This div border color is #ACBDAE.
.myOpacity80 { color: #ACBDAE; opacity: 0.8; }
<p style="color:#ACBDAE;opacity:0.8;">80%</p>
Text with #ACBDAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACBDAE;}
<p style="text-shadow: 3px 3px 1px #ACBDAE">Text here.</p>
This text has shadow with #ACBDAE color.
.textShadow {text-shadow: 3px 3px 1px #ACBDAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACBDAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACBDAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACBDAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACBDAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACBDAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACBDAE; -webkit-box-shadow: 1px 1px 3px 2px #ACBDAE; box-shadow: 1px 1px 3px 2px #ACBDAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACBDAE; -webkit-box-shadow: 1px 1px 3px 2px #ACBDAE; box-shadow:1px 1px 3px 2px #ACBDAE;">
Div content here</div>
This text has color #ACBDAE on black background.
This text has color #ACBDAE on white background.
This text has black color on #ACBDAE background.
This text has white color on #ACBDAE background.