HEX: #49B67D
RGB: (73,182,125)
#49B67D contains mainly green and blue colors. Web safe color of #49B67D is #33CC66 (or #3C6).
#49B67D color RGB value is (73,182,125).
RGB: (73,182,125) (29%,71%,49%)
R 73 of 255 = 29%
G 182 of 255 = 71%
B 125 of 255 = 49%
R + G + B ~ 50%. #49B67D is middle color (not dark and not light).
R + G + B =
73 + 182 + 125 = 380 (100%)
R 73 of 380 ~ 19.21%
G 182 of 380 ~ 47.89%
B 125 of 380 ~ 32.89%
#49B67D color CMYK value is (60,0,31,29).
CMYK: (60,0,31,29) C60M0Y31K29 (60%,0%,31%,29%) (0.60/0.00/0.31/0.29)
49 | B6 | 7D | |
---|---|---|---|
RGB | 73 | 182 | 125 |
HSL | 149° | 42.75% | 50.00% |
HSB/HSV | 149° | 59.89% | 71.37% |
CMYK | 59.89% | 0.00% | 31.32% |
28.63% |
HEX | 49 | B6 | 7D |
Decimal | 73 | 182 | 125 |
Binary | 1001001 | 10110110 | 1111101 |
Octal | 111 | 266 | 175 |
Examples of css and html codes for elements with #49B67D color. Also use rgb(73,182,125) instead hex code.
.myTextColor { color: #49B67D; }
<p style="color:#49B67D">This sample text font color is #49B67D.</p>
This text font color is #49B67D.
.myBgColor { background-color: #49B67D; }
<div style="background-color:#49B67D">Inner text</div>
This div background color is #49B67D.
.myBorderColor { border: 1px solid #49B67D; }
<div style="border:3px solid #49B67D">Div</div>
This div border color is #49B67D.
.myOpacity80 { color: #49B67D; opacity: 0.8; }
<p style="color:#49B67D;opacity:0.8;">80%</p>
Text with #49B67D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #49B67D;}
<p style="text-shadow: 3px 3px 1px #49B67D">Text here.</p>
This text has shadow with #49B67D color.
.textShadow {text-shadow: 3px 3px 1px #49B67D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #49B67D, 5px 5px 20px red">Text here.</p>
This text has shadow with #49B67D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#49B67D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#49B67D, Direction=45, Strength=4)">Text</p>
This text has shadow with #49B67D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #49B67D; -webkit-box-shadow: 1px 1px 3px 2px #49B67D; box-shadow: 1px 1px 3px 2px #49B67D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #49B67D; -webkit-box-shadow: 1px 1px 3px 2px #49B67D; box-shadow:1px 1px 3px 2px #49B67D;">
Div content here</div>
This text has color #49B67D on black background.
This text has color #49B67D on white background.
This text has black color on #49B67D background.
This text has white color on #49B67D background.