HEX: #7E3350
RGB: (126,51,80)
#7E3350 contains mainly red and blue colors. Web safe color of #7E3350 is #663366 (or #636).
#7E3350 color RGB value is (126,51,80).
RGB: (126,51,80) (49%,20%,31%)
R 126 of 255 = 49%
G 51 of 255 = 20%
B 80 of 255 = 31%
R + G + B ~ 33%. #7E3350 is quite dark color.
R + G + B =
126 + 51 + 80 = 257 (100%)
R 126 of 257 ~ 49.03%
G 51 of 257 ~ 19.84%
B 80 of 257 ~ 31.13%
#7E3350 color CMYK value is (0,60,37,51).
CMYK: (0,60,37,51) C0M60Y37K51 (0%,60%,37%,51%) (0.00/0.60/0.37/0.51)
7E | 33 | 50 | |
---|---|---|---|
RGB | 126 | 51 | 80 |
HSL | 337° | 42.37% | 34.71% |
HSB/HSV | 337° | 59.52% | 49.41% |
CMYK | 0.00% | 59.52% | 36.51% |
50.59% |
HEX | 7E | 33 | 50 |
Decimal | 126 | 51 | 80 |
Binary | 1111110 | 110011 | 1010000 |
Octal | 176 | 63 | 120 |
Examples of css and html codes for elements with #7E3350 color. Also use rgb(126,51,80) instead hex code.
.myTextColor { color: #7E3350; }
<p style="color:#7E3350">This sample text font color is #7E3350.</p>
This text font color is #7E3350.
.myBgColor { background-color: #7E3350; }
<div style="background-color:#7E3350">Inner text</div>
This div background color is #7E3350.
.myBorderColor { border: 1px solid #7E3350; }
<div style="border:3px solid #7E3350">Div</div>
This div border color is #7E3350.
.myOpacity80 { color: #7E3350; opacity: 0.8; }
<p style="color:#7E3350;opacity:0.8;">80%</p>
Text with #7E3350 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7E3350;}
<p style="text-shadow: 3px 3px 1px #7E3350">Text here.</p>
This text has shadow with #7E3350 color.
.textShadow {text-shadow: 3px 3px 1px #7E3350, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7E3350, 5px 5px 20px red">Text here.</p>
This text has shadow with #7E3350 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7E3350, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7E3350, Direction=45, Strength=4)">Text</p>
This text has shadow with #7E3350 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7E3350; -webkit-box-shadow: 1px 1px 3px 2px #7E3350; box-shadow: 1px 1px 3px 2px #7E3350; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7E3350; -webkit-box-shadow: 1px 1px 3px 2px #7E3350; box-shadow:1px 1px 3px 2px #7E3350;">
Div content here</div>
This text has color #7E3350 on black background.
This text has color #7E3350 on white background.
This text has black color on #7E3350 background.
This text has white color on #7E3350 background.