HEX: #A5825D
RGB: (165,130,93)
#A5825D contains mainly red and green colors. Web safe color of #A5825D is #999966 (or #996).
#A5825D color RGB value is (165,130,93).
RGB: (165,130,93) (65%,51%,36%)
R 165 of 255 = 65%
G 130 of 255 = 51%
B 93 of 255 = 36%
R + G + B ~ 51%. #A5825D is middle color (not dark and not light).
R + G + B =
165 + 130 + 93 = 388 (100%)
R 165 of 388 ~ 42.53%
G 130 of 388 ~ 33.51%
B 93 of 388 ~ 23.97%
#A5825D color CMYK value is (0,21,44,35).
CMYK: (0,21,44,35) C0M21Y44K35 (0%,21%,44%,35%) (0.00/0.21/0.44/0.35)
A5 | 82 | 5D | |
---|---|---|---|
RGB | 165 | 130 | 93 |
HSL | 31° | 28.57% | 50.59% |
HSB/HSV | 31° | 43.64% | 64.71% |
CMYK | 0.00% | 21.21% | 43.64% |
35.29% |
HEX | A5 | 82 | 5D |
Decimal | 165 | 130 | 93 |
Binary | 10100101 | 10000010 | 1011101 |
Octal | 245 | 202 | 135 |
Examples of css and html codes for elements with #A5825D color. Also use rgb(165,130,93) instead hex code.
.myTextColor { color: #A5825D; }
<p style="color:#A5825D">This sample text font color is #A5825D.</p>
This text font color is #A5825D.
.myBgColor { background-color: #A5825D; }
<div style="background-color:#A5825D">Inner text</div>
This div background color is #A5825D.
.myBorderColor { border: 1px solid #A5825D; }
<div style="border:3px solid #A5825D">Div</div>
This div border color is #A5825D.
.myOpacity80 { color: #A5825D; opacity: 0.8; }
<p style="color:#A5825D;opacity:0.8;">80%</p>
Text with #A5825D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5825D;}
<p style="text-shadow: 3px 3px 1px #A5825D">Text here.</p>
This text has shadow with #A5825D color.
.textShadow {text-shadow: 3px 3px 1px #A5825D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5825D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5825D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5825D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5825D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5825D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5825D; -webkit-box-shadow: 1px 1px 3px 2px #A5825D; box-shadow: 1px 1px 3px 2px #A5825D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5825D; -webkit-box-shadow: 1px 1px 3px 2px #A5825D; box-shadow:1px 1px 3px 2px #A5825D;">
Div content here</div>
This text has color #A5825D on black background.
This text has color #A5825D on white background.
This text has black color on #A5825D background.
This text has white color on #A5825D background.