HEX: #53633D
RGB: (83,99,61)
#53633D contains red, green and blue colors in about the same proportion. Web safe color of #53633D is #666633 (or #663).
#53633D color RGB value is (83,99,61).
RGB: (83,99,61) (33%,39%,24%)
R 83 of 255 = 33%
G 99 of 255 = 39%
B 61 of 255 = 24%
R + G + B ~ 32%. #53633D is quite dark color.
R + G + B =
83 + 99 + 61 = 243 (100%)
R 83 of 243 ~ 34.16%
G 99 of 243 ~ 40.74%
B 61 of 243 ~ 25.1%
#53633D color CMYK value is (16,0,38,61).
CMYK: (16,0,38,61) C16M0Y38K61 (16%,0%,38%,61%) (0.16/0.00/0.38/0.61)
53 | 63 | 3D | |
---|---|---|---|
RGB | 83 | 99 | 61 |
HSL | 85° | 23.75% | 31.37% |
HSB/HSV | 85° | 38.38% | 38.82% |
CMYK | 16.16% | 0.00% | 38.38% |
61.18% |
HEX | 53 | 63 | 3D |
Decimal | 83 | 99 | 61 |
Binary | 1010011 | 1100011 | 111101 |
Octal | 123 | 143 | 75 |
Examples of css and html codes for elements with #53633D color. Also use rgb(83,99,61) instead hex code.
.myTextColor { color: #53633D; }
<p style="color:#53633D">This sample text font color is #53633D.</p>
This text font color is #53633D.
.myBgColor { background-color: #53633D; }
<div style="background-color:#53633D">Inner text</div>
This div background color is #53633D.
.myBorderColor { border: 1px solid #53633D; }
<div style="border:3px solid #53633D">Div</div>
This div border color is #53633D.
.myOpacity80 { color: #53633D; opacity: 0.8; }
<p style="color:#53633D;opacity:0.8;">80%</p>
Text with #53633D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53633D;}
<p style="text-shadow: 3px 3px 1px #53633D">Text here.</p>
This text has shadow with #53633D color.
.textShadow {text-shadow: 3px 3px 1px #53633D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53633D, 5px 5px 20px red">Text here.</p>
This text has shadow with #53633D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53633D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53633D, Direction=45, Strength=4)">Text</p>
This text has shadow with #53633D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53633D; -webkit-box-shadow: 1px 1px 3px 2px #53633D; box-shadow: 1px 1px 3px 2px #53633D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53633D; -webkit-box-shadow: 1px 1px 3px 2px #53633D; box-shadow:1px 1px 3px 2px #53633D;">
Div content here</div>
This text has color #53633D on black background.
This text has color #53633D on white background.
This text has black color on #53633D background.
This text has white color on #53633D background.