HEX: #AD583D
RGB: (173,88,61)
#AD583D contains mainly red color. Web safe color of #AD583D is #996633 (or #963).
#AD583D color RGB value is (173,88,61).
RGB: (173,88,61) (68%,35%,24%)
R 173 of 255 = 68%
G 88 of 255 = 35%
B 61 of 255 = 24%
R + G + B ~ 42%. #AD583D is middle color (not dark and not light).
R + G + B =
173 + 88 + 61 = 322 (100%)
R 173 of 322 ~ 53.73%
G 88 of 322 ~ 27.33%
B 61 of 322 ~ 18.94%
#AD583D color CMYK value is (0,49,65,32).
CMYK: (0,49,65,32) C0M49Y65K32 (0%,49%,65%,32%) (0.00/0.49/0.65/0.32)
AD | 58 | 3D | |
---|---|---|---|
RGB | 173 | 88 | 61 |
HSL | 14° | 47.86% | 45.88% |
HSB/HSV | 14° | 64.74% | 67.84% |
CMYK | 0.00% | 49.13% | 64.74% |
32.16% |
HEX | AD | 58 | 3D |
Decimal | 173 | 88 | 61 |
Binary | 10101101 | 1011000 | 111101 |
Octal | 255 | 130 | 75 |
Examples of css and html codes for elements with #AD583D color. Also use rgb(173,88,61) instead hex code.
.myTextColor { color: #AD583D; }
<p style="color:#AD583D">This sample text font color is #AD583D.</p>
This text font color is #AD583D.
.myBgColor { background-color: #AD583D; }
<div style="background-color:#AD583D">Inner text</div>
This div background color is #AD583D.
.myBorderColor { border: 1px solid #AD583D; }
<div style="border:3px solid #AD583D">Div</div>
This div border color is #AD583D.
.myOpacity80 { color: #AD583D; opacity: 0.8; }
<p style="color:#AD583D;opacity:0.8;">80%</p>
Text with #AD583D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD583D;}
<p style="text-shadow: 3px 3px 1px #AD583D">Text here.</p>
This text has shadow with #AD583D color.
.textShadow {text-shadow: 3px 3px 1px #AD583D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD583D, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD583D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD583D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD583D, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD583D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD583D; -webkit-box-shadow: 1px 1px 3px 2px #AD583D; box-shadow: 1px 1px 3px 2px #AD583D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD583D; -webkit-box-shadow: 1px 1px 3px 2px #AD583D; box-shadow:1px 1px 3px 2px #AD583D;">
Div content here</div>
This text has color #AD583D on black background.
This text has color #AD583D on white background.
This text has black color on #AD583D background.
This text has white color on #AD583D background.