HEX: #71958C
RGB: (113,149,140)
#71958C contains red, green and blue colors in about the same proportion. Web safe color of #71958C is #669999 (or #699).
#71958C color RGB value is (113,149,140).
RGB: (113,149,140) (44%,58%,55%)
R 113 of 255 = 44%
G 149 of 255 = 58%
B 140 of 255 = 55%
R + G + B ~ 52%. #71958C is middle color (not dark and not light).
R + G + B =
113 + 149 + 140 = 402 (100%)
R 113 of 402 ~ 28.11%
G 149 of 402 ~ 37.06%
B 140 of 402 ~ 34.83%
#71958C color CMYK value is (24,0,6,42).
CMYK: (24,0,6,42) C24M0Y6K42 (24%,0%,6%,42%) (0.24/0.00/0.06/0.42)
71 | 95 | 8C | |
---|---|---|---|
RGB | 113 | 149 | 140 |
HSL | 165° | 14.52% | 51.37% |
HSB/HSV | 165° | 24.16% | 58.43% |
CMYK | 24.16% | 0.00% | 6.04% |
41.57% |
HEX | 71 | 95 | 8C |
Decimal | 113 | 149 | 140 |
Binary | 1110001 | 10010101 | 10001100 |
Octal | 161 | 225 | 214 |
Examples of css and html codes for elements with #71958C color. Also use rgb(113,149,140) instead hex code.
.myTextColor { color: #71958C; }
<p style="color:#71958C">This sample text font color is #71958C.</p>
This text font color is #71958C.
.myBgColor { background-color: #71958C; }
<div style="background-color:#71958C">Inner text</div>
This div background color is #71958C.
.myBorderColor { border: 1px solid #71958C; }
<div style="border:3px solid #71958C">Div</div>
This div border color is #71958C.
.myOpacity80 { color: #71958C; opacity: 0.8; }
<p style="color:#71958C;opacity:0.8;">80%</p>
Text with #71958C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71958C;}
<p style="text-shadow: 3px 3px 1px #71958C">Text here.</p>
This text has shadow with #71958C color.
.textShadow {text-shadow: 3px 3px 1px #71958C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71958C, 5px 5px 20px red">Text here.</p>
This text has shadow with #71958C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71958C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71958C, Direction=45, Strength=4)">Text</p>
This text has shadow with #71958C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71958C; -webkit-box-shadow: 1px 1px 3px 2px #71958C; box-shadow: 1px 1px 3px 2px #71958C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71958C; -webkit-box-shadow: 1px 1px 3px 2px #71958C; box-shadow:1px 1px 3px 2px #71958C;">
Div content here</div>
This text has color #71958C on black background.
This text has color #71958C on white background.
This text has black color on #71958C background.
This text has white color on #71958C background.