HEX: #4B967D
RGB: (75,150,125)
#4B967D contains mainly green and blue colors. Web safe color of #4B967D is #339966 (or #396).
#4B967D color RGB value is (75,150,125).
RGB: (75,150,125) (29%,59%,49%)
R 75 of 255 = 29%
G 150 of 255 = 59%
B 125 of 255 = 49%
R + G + B ~ 46%. #4B967D is middle color (not dark and not light).
R + G + B =
75 + 150 + 125 = 350 (100%)
R 75 of 350 ~ 21.43%
G 150 of 350 ~ 42.86%
B 125 of 350 ~ 35.71%
#4B967D color CMYK value is (50,0,17,41).
CMYK: (50,0,17,41) C50M0Y17K41 (50%,0%,17%,41%) (0.50/0.00/0.17/0.41)
4B | 96 | 7D | |
---|---|---|---|
RGB | 75 | 150 | 125 |
HSL | 160° | 33.33% | 44.12% |
HSB/HSV | 160° | 50.00% | 58.82% |
CMYK | 50.00% | 0.00% | 16.67% |
41.18% |
HEX | 4B | 96 | 7D |
Decimal | 75 | 150 | 125 |
Binary | 1001011 | 10010110 | 1111101 |
Octal | 113 | 226 | 175 |
Examples of css and html codes for elements with #4B967D color. Also use rgb(75,150,125) instead hex code.
.myTextColor { color: #4B967D; }
<p style="color:#4B967D">This sample text font color is #4B967D.</p>
This text font color is #4B967D.
.myBgColor { background-color: #4B967D; }
<div style="background-color:#4B967D">Inner text</div>
This div background color is #4B967D.
.myBorderColor { border: 1px solid #4B967D; }
<div style="border:3px solid #4B967D">Div</div>
This div border color is #4B967D.
.myOpacity80 { color: #4B967D; opacity: 0.8; }
<p style="color:#4B967D;opacity:0.8;">80%</p>
Text with #4B967D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4B967D;}
<p style="text-shadow: 3px 3px 1px #4B967D">Text here.</p>
This text has shadow with #4B967D color.
.textShadow {text-shadow: 3px 3px 1px #4B967D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4B967D, 5px 5px 20px red">Text here.</p>
This text has shadow with #4B967D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4B967D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4B967D, Direction=45, Strength=4)">Text</p>
This text has shadow with #4B967D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4B967D; -webkit-box-shadow: 1px 1px 3px 2px #4B967D; box-shadow: 1px 1px 3px 2px #4B967D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4B967D; -webkit-box-shadow: 1px 1px 3px 2px #4B967D; box-shadow:1px 1px 3px 2px #4B967D;">
Div content here</div>
This text has color #4B967D on black background.
This text has color #4B967D on white background.
This text has black color on #4B967D background.
This text has white color on #4B967D background.