HEX: #4CB49F
RGB: (76,180,159)
#4CB49F contains mainly green and blue colors. Web safe color of #4CB49F is #33CC99 (or #3C9).
#4CB49F color RGB value is (76,180,159).
RGB: (76,180,159) (30%,71%,62%)
R 76 of 255 = 30%
G 180 of 255 = 71%
B 159 of 255 = 62%
R + G + B ~ 54%. #4CB49F is middle color (not dark and not light).
R + G + B =
76 + 180 + 159 = 415 (100%)
R 76 of 415 ~ 18.31%
G 180 of 415 ~ 43.37%
B 159 of 415 ~ 38.31%
#4CB49F color CMYK value is (58,0,12,29).
CMYK: (58,0,12,29) C58M0Y12K29 (58%,0%,12%,29%) (0.58/0.00/0.12/0.29)
4C | B4 | 9F | |
---|---|---|---|
RGB | 76 | 180 | 159 |
HSL | 168° | 40.94% | 50.20% |
HSB/HSV | 168° | 57.78% | 70.59% |
CMYK | 57.78% | 0.00% | 11.67% |
29.41% |
HEX | 4C | B4 | 9F |
Decimal | 76 | 180 | 159 |
Binary | 1001100 | 10110100 | 10011111 |
Octal | 114 | 264 | 237 |
Examples of css and html codes for elements with #4CB49F color. Also use rgb(76,180,159) instead hex code.
.myTextColor { color: #4CB49F; }
<p style="color:#4CB49F">This sample text font color is #4CB49F.</p>
This text font color is #4CB49F.
.myBgColor { background-color: #4CB49F; }
<div style="background-color:#4CB49F">Inner text</div>
This div background color is #4CB49F.
.myBorderColor { border: 1px solid #4CB49F; }
<div style="border:3px solid #4CB49F">Div</div>
This div border color is #4CB49F.
.myOpacity80 { color: #4CB49F; opacity: 0.8; }
<p style="color:#4CB49F;opacity:0.8;">80%</p>
Text with #4CB49F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4CB49F;}
<p style="text-shadow: 3px 3px 1px #4CB49F">Text here.</p>
This text has shadow with #4CB49F color.
.textShadow {text-shadow: 3px 3px 1px #4CB49F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4CB49F, 5px 5px 20px red">Text here.</p>
This text has shadow with #4CB49F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4CB49F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4CB49F, Direction=45, Strength=4)">Text</p>
This text has shadow with #4CB49F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4CB49F; -webkit-box-shadow: 1px 1px 3px 2px #4CB49F; box-shadow: 1px 1px 3px 2px #4CB49F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4CB49F; -webkit-box-shadow: 1px 1px 3px 2px #4CB49F; box-shadow:1px 1px 3px 2px #4CB49F;">
Div content here</div>
This text has color #4CB49F on black background.
This text has color #4CB49F on white background.
This text has black color on #4CB49F background.
This text has white color on #4CB49F background.