HEX: #743F65
RGB: (116,63,101)
#743F65 contains red, green and blue colors in about the same proportion. Web safe color of #743F65 is #663366 (or #636).
#743F65 color RGB value is (116,63,101).
RGB: (116,63,101) (45%,25%,40%)
R 116 of 255 = 45%
G 63 of 255 = 25%
B 101 of 255 = 40%
R + G + B ~ 37%. #743F65 is quite dark color.
R + G + B =
116 + 63 + 101 = 280 (100%)
R 116 of 280 ~ 41.43%
G 63 of 280 ~ 22.5%
B 101 of 280 ~ 36.07%
#743F65 color CMYK value is (0,46,13,55).
CMYK: (0,46,13,55) C0M46Y13K55 (0%,46%,13%,55%) (0.00/0.46/0.13/0.55)
74 | 3F | 65 | |
---|---|---|---|
RGB | 116 | 63 | 101 |
HSL | 317° | 29.61% | 35.10% |
HSB/HSV | 317° | 45.69% | 45.49% |
CMYK | 0.00% | 45.69% | 12.93% |
54.51% |
HEX | 74 | 3F | 65 |
Decimal | 116 | 63 | 101 |
Binary | 1110100 | 111111 | 1100101 |
Octal | 164 | 77 | 145 |
Examples of css and html codes for elements with #743F65 color. Also use rgb(116,63,101) instead hex code.
.myTextColor { color: #743F65; }
<p style="color:#743F65">This sample text font color is #743F65.</p>
This text font color is #743F65.
.myBgColor { background-color: #743F65; }
<div style="background-color:#743F65">Inner text</div>
This div background color is #743F65.
.myBorderColor { border: 1px solid #743F65; }
<div style="border:3px solid #743F65">Div</div>
This div border color is #743F65.
.myOpacity80 { color: #743F65; opacity: 0.8; }
<p style="color:#743F65;opacity:0.8;">80%</p>
Text with #743F65 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #743F65;}
<p style="text-shadow: 3px 3px 1px #743F65">Text here.</p>
This text has shadow with #743F65 color.
.textShadow {text-shadow: 3px 3px 1px #743F65, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #743F65, 5px 5px 20px red">Text here.</p>
This text has shadow with #743F65 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#743F65, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#743F65, Direction=45, Strength=4)">Text</p>
This text has shadow with #743F65 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #743F65; -webkit-box-shadow: 1px 1px 3px 2px #743F65; box-shadow: 1px 1px 3px 2px #743F65; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #743F65; -webkit-box-shadow: 1px 1px 3px 2px #743F65; box-shadow:1px 1px 3px 2px #743F65;">
Div content here</div>
This text has color #743F65 on black background.
This text has color #743F65 on white background.
This text has black color on #743F65 background.
This text has white color on #743F65 background.