HEX: #552E09
RGB: (85,46,9)
#552E09 contains mainly red and green colors. Web safe color of #552E09 is #663300 (or #630).
#552E09 color RGB value is (85,46,9).
RGB: (85,46,9) (33%,18%,4%)
R 85 of 255 = 33%
G 46 of 255 = 18%
B 9 of 255 = 4%
R + G + B ~ 18%. #552E09 is dark color.
R + G + B =
85 + 46 + 9 = 140 (100%)
R 85 of 140 ~ 60.71%
G 46 of 140 ~ 32.86%
B 9 of 140 ~ 6.43%
#552E09 color CMYK value is (0,46,89,67).
CMYK: (0,46,89,67) C0M46Y89K67 (0%,46%,89%,67%) (0.00/0.46/0.89/0.67)
55 | 2E | 09 | |
---|---|---|---|
RGB | 85 | 46 | 9 |
HSL | 29° | 80.85% | 18.43% |
HSB/HSV | 29° | 89.41% | 33.33% |
CMYK | 0.00% | 45.88% | 89.41% |
66.67% |
HEX | 55 | 2E | 09 |
Decimal | 85 | 46 | 9 |
Binary | 1010101 | 101110 | 1001 |
Octal | 125 | 56 | 11 |
Examples of css and html codes for elements with #552E09 color. Also use rgb(85,46,9) instead hex code.
.myTextColor { color: #552E09; }
<p style="color:#552E09">This sample text font color is #552E09.</p>
This text font color is #552E09.
.myBgColor { background-color: #552E09; }
<div style="background-color:#552E09">Inner text</div>
This div background color is #552E09.
.myBorderColor { border: 1px solid #552E09; }
<div style="border:3px solid #552E09">Div</div>
This div border color is #552E09.
.myOpacity80 { color: #552E09; opacity: 0.8; }
<p style="color:#552E09;opacity:0.8;">80%</p>
Text with #552E09 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #552E09;}
<p style="text-shadow: 3px 3px 1px #552E09">Text here.</p>
This text has shadow with #552E09 color.
.textShadow {text-shadow: 3px 3px 1px #552E09, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #552E09, 5px 5px 20px red">Text here.</p>
This text has shadow with #552E09 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#552E09, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#552E09, Direction=45, Strength=4)">Text</p>
This text has shadow with #552E09 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #552E09; -webkit-box-shadow: 1px 1px 3px 2px #552E09; box-shadow: 1px 1px 3px 2px #552E09; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #552E09; -webkit-box-shadow: 1px 1px 3px 2px #552E09; box-shadow:1px 1px 3px 2px #552E09;">
Div content here</div>
This text has color #552E09 on black background.
This text has color #552E09 on white background.
This text has black color on #552E09 background.
This text has white color on #552E09 background.