HEX: #A5BCAE
RGB: (165,188,174)
#A5BCAE contains red, green and blue colors in about the same proportion. Web safe color of #A5BCAE is #99CC99 (or #9C9).
#A5BCAE color RGB value is (165,188,174).
RGB: (165,188,174) (65%,74%,68%)
R 165 of 255 = 65%
G 188 of 255 = 74%
B 174 of 255 = 68%
R + G + B ~ 69%. #A5BCAE is quite light color.
R + G + B =
165 + 188 + 174 = 527 (100%)
R 165 of 527 ~ 31.31%
G 188 of 527 ~ 35.67%
B 174 of 527 ~ 33.02%
#A5BCAE color CMYK value is (12,0,7,26).
CMYK: (12,0,7,26) C12M0Y7K26 (12%,0%,7%,26%) (0.12/0.00/0.07/0.26)
A5 | BC | AE | |
---|---|---|---|
RGB | 165 | 188 | 174 |
HSL | 143° | 14.65% | 69.22% |
HSB/HSV | 143° | 12.23% | 73.73% |
CMYK | 12.23% | 0.00% | 7.45% |
26.27% |
HEX | A5 | BC | AE |
Decimal | 165 | 188 | 174 |
Binary | 10100101 | 10111100 | 10101110 |
Octal | 245 | 274 | 256 |
Examples of css and html codes for elements with #A5BCAE color. Also use rgb(165,188,174) instead hex code.
.myTextColor { color: #A5BCAE; }
<p style="color:#A5BCAE">This sample text font color is #A5BCAE.</p>
This text font color is #A5BCAE.
.myBgColor { background-color: #A5BCAE; }
<div style="background-color:#A5BCAE">Inner text</div>
This div background color is #A5BCAE.
.myBorderColor { border: 1px solid #A5BCAE; }
<div style="border:3px solid #A5BCAE">Div</div>
This div border color is #A5BCAE.
.myOpacity80 { color: #A5BCAE; opacity: 0.8; }
<p style="color:#A5BCAE;opacity:0.8;">80%</p>
Text with #A5BCAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5BCAE;}
<p style="text-shadow: 3px 3px 1px #A5BCAE">Text here.</p>
This text has shadow with #A5BCAE color.
.textShadow {text-shadow: 3px 3px 1px #A5BCAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5BCAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5BCAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5BCAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5BCAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5BCAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5BCAE; -webkit-box-shadow: 1px 1px 3px 2px #A5BCAE; box-shadow: 1px 1px 3px 2px #A5BCAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5BCAE; -webkit-box-shadow: 1px 1px 3px 2px #A5BCAE; box-shadow:1px 1px 3px 2px #A5BCAE;">
Div content here</div>
This text has color #A5BCAE on black background.
This text has color #A5BCAE on white background.
This text has black color on #A5BCAE background.
This text has white color on #A5BCAE background.