HEX: #74425C
RGB: (116,66,92)
#74425C contains red, green and blue colors in about the same proportion. Web safe color of #74425C is #663366 (or #636).
#74425C color RGB value is (116,66,92).
RGB: (116,66,92) (45%,26%,36%)
R 116 of 255 = 45%
G 66 of 255 = 26%
B 92 of 255 = 36%
R + G + B ~ 36%. #74425C is quite dark color.
R + G + B =
116 + 66 + 92 = 274 (100%)
R 116 of 274 ~ 42.34%
G 66 of 274 ~ 24.09%
B 92 of 274 ~ 33.58%
#74425C color CMYK value is (0,43,21,55).
CMYK: (0,43,21,55) C0M43Y21K55 (0%,43%,21%,55%) (0.00/0.43/0.21/0.55)
74 | 42 | 5C | |
---|---|---|---|
RGB | 116 | 66 | 92 |
HSL | 329° | 27.47% | 35.69% |
HSB/HSV | 329° | 43.10% | 45.49% |
CMYK | 0.00% | 43.10% | 20.69% |
54.51% |
HEX | 74 | 42 | 5C |
Decimal | 116 | 66 | 92 |
Binary | 1110100 | 1000010 | 1011100 |
Octal | 164 | 102 | 134 |
Examples of css and html codes for elements with #74425C color. Also use rgb(116,66,92) instead hex code.
.myTextColor { color: #74425C; }
<p style="color:#74425C">This sample text font color is #74425C.</p>
This text font color is #74425C.
.myBgColor { background-color: #74425C; }
<div style="background-color:#74425C">Inner text</div>
This div background color is #74425C.
.myBorderColor { border: 1px solid #74425C; }
<div style="border:3px solid #74425C">Div</div>
This div border color is #74425C.
.myOpacity80 { color: #74425C; opacity: 0.8; }
<p style="color:#74425C;opacity:0.8;">80%</p>
Text with #74425C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74425C;}
<p style="text-shadow: 3px 3px 1px #74425C">Text here.</p>
This text has shadow with #74425C color.
.textShadow {text-shadow: 3px 3px 1px #74425C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74425C, 5px 5px 20px red">Text here.</p>
This text has shadow with #74425C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74425C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74425C, Direction=45, Strength=4)">Text</p>
This text has shadow with #74425C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74425C; -webkit-box-shadow: 1px 1px 3px 2px #74425C; box-shadow: 1px 1px 3px 2px #74425C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74425C; -webkit-box-shadow: 1px 1px 3px 2px #74425C; box-shadow:1px 1px 3px 2px #74425C;">
Div content here</div>
This text has color #74425C on black background.
This text has color #74425C on white background.
This text has black color on #74425C background.
This text has white color on #74425C background.