HEX: #30350D
RGB: (48,53,13)
#30350D contains red, green and blue colors in about the same proportion. Web safe color of #30350D is #333300 (or #330).
#30350D color RGB value is (48,53,13).
RGB: (48,53,13) (19%,21%,5%)
R 48 of 255 = 19%
G 53 of 255 = 21%
B 13 of 255 = 5%
R + G + B ~ 15%. #30350D is dark color.
R + G + B =
48 + 53 + 13 = 114 (100%)
R 48 of 114 ~ 42.11%
G 53 of 114 ~ 46.49%
B 13 of 114 ~ 11.4%
#30350D color CMYK value is (9,0,75,79).
CMYK: (9,0,75,79) C9M0Y75K79 (9%,0%,75%,79%) (0.09/0.00/0.75/0.79)
30 | 35 | 0D | |
---|---|---|---|
RGB | 48 | 53 | 13 |
HSL | 68° | 60.61% | 12.94% |
HSB/HSV | 68° | 75.47% | 20.78% |
CMYK | 9.43% | 0.00% | 75.47% |
79.22% |
HEX | 30 | 35 | 0D |
Decimal | 48 | 53 | 13 |
Binary | 110000 | 110101 | 1101 |
Octal | 60 | 65 | 15 |
Examples of css and html codes for elements with #30350D color. Also use rgb(48,53,13) instead hex code.
.myTextColor { color: #30350D; }
<p style="color:#30350D">This sample text font color is #30350D.</p>
This text font color is #30350D.
.myBgColor { background-color: #30350D; }
<div style="background-color:#30350D">Inner text</div>
This div background color is #30350D.
.myBorderColor { border: 1px solid #30350D; }
<div style="border:3px solid #30350D">Div</div>
This div border color is #30350D.
.myOpacity80 { color: #30350D; opacity: 0.8; }
<p style="color:#30350D;opacity:0.8;">80%</p>
Text with #30350D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #30350D;}
<p style="text-shadow: 3px 3px 1px #30350D">Text here.</p>
This text has shadow with #30350D color.
.textShadow {text-shadow: 3px 3px 1px #30350D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #30350D, 5px 5px 20px red">Text here.</p>
This text has shadow with #30350D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#30350D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#30350D, Direction=45, Strength=4)">Text</p>
This text has shadow with #30350D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #30350D; -webkit-box-shadow: 1px 1px 3px 2px #30350D; box-shadow: 1px 1px 3px 2px #30350D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #30350D; -webkit-box-shadow: 1px 1px 3px 2px #30350D; box-shadow:1px 1px 3px 2px #30350D;">
Div content here</div>
This text has color #30350D on black background.
This text has color #30350D on white background.
This text has black color on #30350D background.
This text has white color on #30350D background.