HEX: #A55D2F
RGB: (165,93,47)
#A55D2F contains mainly red color. Web safe color of #A55D2F is #996633 (or #963).
#A55D2F color RGB value is (165,93,47).
RGB: (165,93,47) (65%,36%,18%)
R 165 of 255 = 65%
G 93 of 255 = 36%
B 47 of 255 = 18%
R + G + B ~ 40%. #A55D2F is middle color (not dark and not light).
R + G + B =
165 + 93 + 47 = 305 (100%)
R 165 of 305 ~ 54.1%
G 93 of 305 ~ 30.49%
B 47 of 305 ~ 15.41%
#A55D2F color CMYK value is (0,44,72,35).
CMYK: (0,44,72,35) C0M44Y72K35 (0%,44%,72%,35%) (0.00/0.44/0.72/0.35)
A5 | 5D | 2F | |
---|---|---|---|
RGB | 165 | 93 | 47 |
HSL | 23° | 55.66% | 41.57% |
HSB/HSV | 23° | 71.52% | 64.71% |
CMYK | 0.00% | 43.64% | 71.52% |
35.29% |
HEX | A5 | 5D | 2F |
Decimal | 165 | 93 | 47 |
Binary | 10100101 | 1011101 | 101111 |
Octal | 245 | 135 | 57 |
Examples of css and html codes for elements with #A55D2F color. Also use rgb(165,93,47) instead hex code.
.myTextColor { color: #A55D2F; }
<p style="color:#A55D2F">This sample text font color is #A55D2F.</p>
This text font color is #A55D2F.
.myBgColor { background-color: #A55D2F; }
<div style="background-color:#A55D2F">Inner text</div>
This div background color is #A55D2F.
.myBorderColor { border: 1px solid #A55D2F; }
<div style="border:3px solid #A55D2F">Div</div>
This div border color is #A55D2F.
.myOpacity80 { color: #A55D2F; opacity: 0.8; }
<p style="color:#A55D2F;opacity:0.8;">80%</p>
Text with #A55D2F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A55D2F;}
<p style="text-shadow: 3px 3px 1px #A55D2F">Text here.</p>
This text has shadow with #A55D2F color.
.textShadow {text-shadow: 3px 3px 1px #A55D2F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A55D2F, 5px 5px 20px red">Text here.</p>
This text has shadow with #A55D2F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A55D2F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A55D2F, Direction=45, Strength=4)">Text</p>
This text has shadow with #A55D2F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A55D2F; -webkit-box-shadow: 1px 1px 3px 2px #A55D2F; box-shadow: 1px 1px 3px 2px #A55D2F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A55D2F; -webkit-box-shadow: 1px 1px 3px 2px #A55D2F; box-shadow:1px 1px 3px 2px #A55D2F;">
Div content here</div>
This text has color #A55D2F on black background.
This text has color #A55D2F on white background.
This text has black color on #A55D2F background.
This text has white color on #A55D2F background.