HEX: #557B0D
RGB: (85,123,13)
#557B0D contains mainly red and green colors. Web safe color of #557B0D is #666600 (or #660).
#557B0D color RGB value is (85,123,13).
RGB: (85,123,13) (33%,48%,5%)
R 85 of 255 = 33%
G 123 of 255 = 48%
B 13 of 255 = 5%
R + G + B ~ 29%. #557B0D is quite dark color.
R + G + B =
85 + 123 + 13 = 221 (100%)
R 85 of 221 ~ 38.46%
G 123 of 221 ~ 55.66%
B 13 of 221 ~ 5.88%
#557B0D color CMYK value is (31,0,89,52).
CMYK: (31,0,89,52) C31M0Y89K52 (31%,0%,89%,52%) (0.31/0.00/0.89/0.52)
55 | 7B | 0D | |
---|---|---|---|
RGB | 85 | 123 | 13 |
HSL | 81° | 80.88% | 26.67% |
HSB/HSV | 81° | 89.43% | 48.24% |
CMYK | 30.89% | 0.00% | 89.43% |
51.76% |
HEX | 55 | 7B | 0D |
Decimal | 85 | 123 | 13 |
Binary | 1010101 | 1111011 | 1101 |
Octal | 125 | 173 | 15 |
Examples of css and html codes for elements with #557B0D color. Also use rgb(85,123,13) instead hex code.
.myTextColor { color: #557B0D; }
<p style="color:#557B0D">This sample text font color is #557B0D.</p>
This text font color is #557B0D.
.myBgColor { background-color: #557B0D; }
<div style="background-color:#557B0D">Inner text</div>
This div background color is #557B0D.
.myBorderColor { border: 1px solid #557B0D; }
<div style="border:3px solid #557B0D">Div</div>
This div border color is #557B0D.
.myOpacity80 { color: #557B0D; opacity: 0.8; }
<p style="color:#557B0D;opacity:0.8;">80%</p>
Text with #557B0D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #557B0D;}
<p style="text-shadow: 3px 3px 1px #557B0D">Text here.</p>
This text has shadow with #557B0D color.
.textShadow {text-shadow: 3px 3px 1px #557B0D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #557B0D, 5px 5px 20px red">Text here.</p>
This text has shadow with #557B0D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#557B0D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#557B0D, Direction=45, Strength=4)">Text</p>
This text has shadow with #557B0D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #557B0D; -webkit-box-shadow: 1px 1px 3px 2px #557B0D; box-shadow: 1px 1px 3px 2px #557B0D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #557B0D; -webkit-box-shadow: 1px 1px 3px 2px #557B0D; box-shadow:1px 1px 3px 2px #557B0D;">
Div content here</div>
This text has color #557B0D on black background.
This text has color #557B0D on white background.
This text has black color on #557B0D background.
This text has white color on #557B0D background.