HEX: #745350
RGB: (116,83,80)
#745350 contains red, green and blue colors in about the same proportion. Web safe color of #745350 is #666666 (or #666).
#745350 color RGB value is (116,83,80).
RGB: (116,83,80) (45%,33%,31%)
R 116 of 255 = 45%
G 83 of 255 = 33%
B 80 of 255 = 31%
R + G + B ~ 36%. #745350 is quite dark color.
R + G + B =
116 + 83 + 80 = 279 (100%)
R 116 of 279 ~ 41.58%
G 83 of 279 ~ 29.75%
B 80 of 279 ~ 28.67%
#745350 color CMYK value is (0,28,31,55).
CMYK: (0,28,31,55) C0M28Y31K55 (0%,28%,31%,55%) (0.00/0.28/0.31/0.55)
74 | 53 | 50 | |
---|---|---|---|
RGB | 116 | 83 | 80 |
HSL | 5° | 18.37% | 38.43% |
HSB/HSV | 5° | 31.03% | 45.49% |
CMYK | 0.00% | 28.45% | 31.03% |
54.51% |
HEX | 74 | 53 | 50 |
Decimal | 116 | 83 | 80 |
Binary | 1110100 | 1010011 | 1010000 |
Octal | 164 | 123 | 120 |
Examples of css and html codes for elements with #745350 color. Also use rgb(116,83,80) instead hex code.
.myTextColor { color: #745350; }
<p style="color:#745350">This sample text font color is #745350.</p>
This text font color is #745350.
.myBgColor { background-color: #745350; }
<div style="background-color:#745350">Inner text</div>
This div background color is #745350.
.myBorderColor { border: 1px solid #745350; }
<div style="border:3px solid #745350">Div</div>
This div border color is #745350.
.myOpacity80 { color: #745350; opacity: 0.8; }
<p style="color:#745350;opacity:0.8;">80%</p>
Text with #745350 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #745350;}
<p style="text-shadow: 3px 3px 1px #745350">Text here.</p>
This text has shadow with #745350 color.
.textShadow {text-shadow: 3px 3px 1px #745350, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #745350, 5px 5px 20px red">Text here.</p>
This text has shadow with #745350 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#745350, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#745350, Direction=45, Strength=4)">Text</p>
This text has shadow with #745350 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #745350; -webkit-box-shadow: 1px 1px 3px 2px #745350; box-shadow: 1px 1px 3px 2px #745350; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #745350; -webkit-box-shadow: 1px 1px 3px 2px #745350; box-shadow:1px 1px 3px 2px #745350;">
Div content here</div>
This text has color #745350 on black background.
This text has color #745350 on white background.
This text has black color on #745350 background.
This text has white color on #745350 background.