HEX: #77427D
RGB: (119,66,125)
#77427D contains red, green and blue colors in about the same proportion. Web safe color of #77427D is #663366 (or #636).
#77427D color RGB value is (119,66,125).
RGB: (119,66,125) (47%,26%,49%)
R 119 of 255 = 47%
G 66 of 255 = 26%
B 125 of 255 = 49%
R + G + B ~ 41%. #77427D is middle color (not dark and not light).
R + G + B =
119 + 66 + 125 = 310 (100%)
R 119 of 310 ~ 38.39%
G 66 of 310 ~ 21.29%
B 125 of 310 ~ 40.32%
#77427D color CMYK value is (5,47,0,51).
CMYK: (5,47,0,51) C5M47Y0K51 (5%,47%,0%,51%) (0.05/0.47/0.00/0.51)
77 | 42 | 7D | |
---|---|---|---|
RGB | 119 | 66 | 125 |
HSL | 294° | 30.89% | 37.45% |
HSB/HSV | 294° | 47.20% | 49.02% |
CMYK | 4.80% | 47.20% | 0.00% |
50.98% |
HEX | 77 | 42 | 7D |
Decimal | 119 | 66 | 125 |
Binary | 1110111 | 1000010 | 1111101 |
Octal | 167 | 102 | 175 |
Examples of css and html codes for elements with #77427D color. Also use rgb(119,66,125) instead hex code.
.myTextColor { color: #77427D; }
<p style="color:#77427D">This sample text font color is #77427D.</p>
This text font color is #77427D.
.myBgColor { background-color: #77427D; }
<div style="background-color:#77427D">Inner text</div>
This div background color is #77427D.
.myBorderColor { border: 1px solid #77427D; }
<div style="border:3px solid #77427D">Div</div>
This div border color is #77427D.
.myOpacity80 { color: #77427D; opacity: 0.8; }
<p style="color:#77427D;opacity:0.8;">80%</p>
Text with #77427D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #77427D;}
<p style="text-shadow: 3px 3px 1px #77427D">Text here.</p>
This text has shadow with #77427D color.
.textShadow {text-shadow: 3px 3px 1px #77427D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #77427D, 5px 5px 20px red">Text here.</p>
This text has shadow with #77427D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#77427D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#77427D, Direction=45, Strength=4)">Text</p>
This text has shadow with #77427D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #77427D; -webkit-box-shadow: 1px 1px 3px 2px #77427D; box-shadow: 1px 1px 3px 2px #77427D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #77427D; -webkit-box-shadow: 1px 1px 3px 2px #77427D; box-shadow:1px 1px 3px 2px #77427D;">
Div content here</div>
This text has color #77427D on black background.
This text has color #77427D on white background.
This text has black color on #77427D background.
This text has white color on #77427D background.