HEX: #A5B99E
RGB: (165,185,158)
#A5B99E contains red, green and blue colors in about the same proportion. Web safe color of #A5B99E is #99CC99 (or #9C9).
#A5B99E color RGB value is (165,185,158).
RGB: (165,185,158) (65%,73%,62%)
R 165 of 255 = 65%
G 185 of 255 = 73%
B 158 of 255 = 62%
R + G + B ~ 67%. #A5B99E is quite light color.
R + G + B =
165 + 185 + 158 = 508 (100%)
R 165 of 508 ~ 32.48%
G 185 of 508 ~ 36.42%
B 158 of 508 ~ 31.1%
#A5B99E color CMYK value is (11,0,15,27).
CMYK: (11,0,15,27) C11M0Y15K27 (11%,0%,15%,27%) (0.11/0.00/0.15/0.27)
A5 | B9 | 9E | |
---|---|---|---|
RGB | 165 | 185 | 158 |
HSL | 104° | 16.17% | 67.25% |
HSB/HSV | 104° | 14.59% | 72.55% |
CMYK | 10.81% | 0.00% | 14.59% |
27.45% |
HEX | A5 | B9 | 9E |
Decimal | 165 | 185 | 158 |
Binary | 10100101 | 10111001 | 10011110 |
Octal | 245 | 271 | 236 |
Examples of css and html codes for elements with #A5B99E color. Also use rgb(165,185,158) instead hex code.
.myTextColor { color: #A5B99E; }
<p style="color:#A5B99E">This sample text font color is #A5B99E.</p>
This text font color is #A5B99E.
.myBgColor { background-color: #A5B99E; }
<div style="background-color:#A5B99E">Inner text</div>
This div background color is #A5B99E.
.myBorderColor { border: 1px solid #A5B99E; }
<div style="border:3px solid #A5B99E">Div</div>
This div border color is #A5B99E.
.myOpacity80 { color: #A5B99E; opacity: 0.8; }
<p style="color:#A5B99E;opacity:0.8;">80%</p>
Text with #A5B99E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5B99E;}
<p style="text-shadow: 3px 3px 1px #A5B99E">Text here.</p>
This text has shadow with #A5B99E color.
.textShadow {text-shadow: 3px 3px 1px #A5B99E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5B99E, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5B99E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5B99E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5B99E, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5B99E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5B99E; -webkit-box-shadow: 1px 1px 3px 2px #A5B99E; box-shadow: 1px 1px 3px 2px #A5B99E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5B99E; -webkit-box-shadow: 1px 1px 3px 2px #A5B99E; box-shadow:1px 1px 3px 2px #A5B99E;">
Div content here</div>
This text has color #A5B99E on black background.
This text has color #A5B99E on white background.
This text has black color on #A5B99E background.
This text has white color on #A5B99E background.