HEX: #30684B
RGB: (48,104,75)
#30684B contains red, green and blue colors in about the same proportion. Web safe color of #30684B is #336633 (or #363).
#30684B color RGB value is (48,104,75).
RGB: (48,104,75) (19%,41%,29%)
R 48 of 255 = 19%
G 104 of 255 = 41%
B 75 of 255 = 29%
R + G + B ~ 30%. #30684B is quite dark color.
R + G + B =
48 + 104 + 75 = 227 (100%)
R 48 of 227 ~ 21.15%
G 104 of 227 ~ 45.81%
B 75 of 227 ~ 33.04%
#30684B color CMYK value is (54,0,28,59).
CMYK: (54,0,28,59) C54M0Y28K59 (54%,0%,28%,59%) (0.54/0.00/0.28/0.59)
30 | 68 | 4B | |
---|---|---|---|
RGB | 48 | 104 | 75 |
HSL | 149° | 36.84% | 29.80% |
HSB/HSV | 149° | 53.85% | 40.78% |
CMYK | 53.85% | 0.00% | 27.88% |
59.22% |
HEX | 30 | 68 | 4B |
Decimal | 48 | 104 | 75 |
Binary | 110000 | 1101000 | 1001011 |
Octal | 60 | 150 | 113 |
Examples of css and html codes for elements with #30684B color. Also use rgb(48,104,75) instead hex code.
.myTextColor { color: #30684B; }
<p style="color:#30684B">This sample text font color is #30684B.</p>
This text font color is #30684B.
.myBgColor { background-color: #30684B; }
<div style="background-color:#30684B">Inner text</div>
This div background color is #30684B.
.myBorderColor { border: 1px solid #30684B; }
<div style="border:3px solid #30684B">Div</div>
This div border color is #30684B.
.myOpacity80 { color: #30684B; opacity: 0.8; }
<p style="color:#30684B;opacity:0.8;">80%</p>
Text with #30684B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #30684B;}
<p style="text-shadow: 3px 3px 1px #30684B">Text here.</p>
This text has shadow with #30684B color.
.textShadow {text-shadow: 3px 3px 1px #30684B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #30684B, 5px 5px 20px red">Text here.</p>
This text has shadow with #30684B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#30684B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#30684B, Direction=45, Strength=4)">Text</p>
This text has shadow with #30684B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #30684B; -webkit-box-shadow: 1px 1px 3px 2px #30684B; box-shadow: 1px 1px 3px 2px #30684B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #30684B; -webkit-box-shadow: 1px 1px 3px 2px #30684B; box-shadow:1px 1px 3px 2px #30684B;">
Div content here</div>
This text has color #30684B on black background.
This text has color #30684B on white background.
This text has black color on #30684B background.
This text has white color on #30684B background.