HEX: #965E04
RGB: (150,94,4)
#965E04 contains mainly red and green colors. Web safe color of #965E04 is #996600 (or #960).
#965E04 color RGB value is (150,94,4).
RGB: (150,94,4) (59%,37%,2%)
R 150 of 255 = 59%
G 94 of 255 = 37%
B 4 of 255 = 2%
R + G + B ~ 33%. #965E04 is quite dark color.
R + G + B =
150 + 94 + 4 = 248 (100%)
R 150 of 248 ~ 60.48%
G 94 of 248 ~ 37.9%
B 4 of 248 ~ 1.61%
#965E04 color CMYK value is (0,37,97,41).
CMYK: (0,37,97,41) C0M37Y97K41 (0%,37%,97%,41%) (0.00/0.37/0.97/0.41)
96 | 5E | 04 | |
---|---|---|---|
RGB | 150 | 94 | 4 |
HSL | 37° | 94.81% | 30.20% |
HSB/HSV | 37° | 97.33% | 58.82% |
CMYK | 0.00% | 37.33% | 97.33% |
41.18% |
HEX | 96 | 5E | 04 |
Decimal | 150 | 94 | 4 |
Binary | 10010110 | 1011110 | 100 |
Octal | 226 | 136 | 4 |
Examples of css and html codes for elements with #965E04 color. Also use rgb(150,94,4) instead hex code.
.myTextColor { color: #965E04; }
<p style="color:#965E04">This sample text font color is #965E04.</p>
This text font color is #965E04.
.myBgColor { background-color: #965E04; }
<div style="background-color:#965E04">Inner text</div>
This div background color is #965E04.
.myBorderColor { border: 1px solid #965E04; }
<div style="border:3px solid #965E04">Div</div>
This div border color is #965E04.
.myOpacity80 { color: #965E04; opacity: 0.8; }
<p style="color:#965E04;opacity:0.8;">80%</p>
Text with #965E04 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #965E04;}
<p style="text-shadow: 3px 3px 1px #965E04">Text here.</p>
This text has shadow with #965E04 color.
.textShadow {text-shadow: 3px 3px 1px #965E04, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #965E04, 5px 5px 20px red">Text here.</p>
This text has shadow with #965E04 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#965E04, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#965E04, Direction=45, Strength=4)">Text</p>
This text has shadow with #965E04 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #965E04; -webkit-box-shadow: 1px 1px 3px 2px #965E04; box-shadow: 1px 1px 3px 2px #965E04; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #965E04; -webkit-box-shadow: 1px 1px 3px 2px #965E04; box-shadow:1px 1px 3px 2px #965E04;">
Div content here</div>
This text has color #965E04 on black background.
This text has color #965E04 on white background.
This text has black color on #965E04 background.
This text has white color on #965E04 background.