HEX: #74537F
RGB: (116,83,127)
#74537F contains red, green and blue colors in about the same proportion. Web safe color of #74537F is #666666 (or #666).
#74537F color RGB value is (116,83,127).
RGB: (116,83,127) (45%,33%,50%)
R 116 of 255 = 45%
G 83 of 255 = 33%
B 127 of 255 = 50%
R + G + B ~ 43%. #74537F is middle color (not dark and not light).
R + G + B =
116 + 83 + 127 = 326 (100%)
R 116 of 326 ~ 35.58%
G 83 of 326 ~ 25.46%
B 127 of 326 ~ 38.96%
#74537F color CMYK value is (9,35,0,50).
CMYK: (9,35,0,50) C9M35Y0K50 (9%,35%,0%,50%) (0.09/0.35/0.00/0.50)
74 | 53 | 7F | |
---|---|---|---|
RGB | 116 | 83 | 127 |
HSL | 285° | 20.95% | 41.18% |
HSB/HSV | 285° | 34.65% | 49.80% |
CMYK | 8.66% | 34.65% | 0.00% |
50.20% |
HEX | 74 | 53 | 7F |
Decimal | 116 | 83 | 127 |
Binary | 1110100 | 1010011 | 1111111 |
Octal | 164 | 123 | 177 |
Examples of css and html codes for elements with #74537F color. Also use rgb(116,83,127) instead hex code.
.myTextColor { color: #74537F; }
<p style="color:#74537F">This sample text font color is #74537F.</p>
This text font color is #74537F.
.myBgColor { background-color: #74537F; }
<div style="background-color:#74537F">Inner text</div>
This div background color is #74537F.
.myBorderColor { border: 1px solid #74537F; }
<div style="border:3px solid #74537F">Div</div>
This div border color is #74537F.
.myOpacity80 { color: #74537F; opacity: 0.8; }
<p style="color:#74537F;opacity:0.8;">80%</p>
Text with #74537F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74537F;}
<p style="text-shadow: 3px 3px 1px #74537F">Text here.</p>
This text has shadow with #74537F color.
.textShadow {text-shadow: 3px 3px 1px #74537F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74537F, 5px 5px 20px red">Text here.</p>
This text has shadow with #74537F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74537F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74537F, Direction=45, Strength=4)">Text</p>
This text has shadow with #74537F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74537F; -webkit-box-shadow: 1px 1px 3px 2px #74537F; box-shadow: 1px 1px 3px 2px #74537F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74537F; -webkit-box-shadow: 1px 1px 3px 2px #74537F; box-shadow:1px 1px 3px 2px #74537F;">
Div content here</div>
This text has color #74537F on black background.
This text has color #74537F on white background.
This text has black color on #74537F background.
This text has white color on #74537F background.