HEX: #764899
RGB: (118,72,153)
#764899 contains mainly red and blue colors. Web safe color of #764899 is #663399 (or #639).
#764899 color RGB value is (118,72,153).
RGB: (118,72,153) (46%,28%,60%)
R 118 of 255 = 46%
G 72 of 255 = 28%
B 153 of 255 = 60%
R + G + B ~ 45%. #764899 is middle color (not dark and not light).
R + G + B =
118 + 72 + 153 = 343 (100%)
R 118 of 343 ~ 34.4%
G 72 of 343 ~ 20.99%
B 153 of 343 ~ 44.61%
#764899 color CMYK value is (23,53,0,40).
CMYK: (23,53,0,40) C23M53Y0K40 (23%,53%,0%,40%) (0.23/0.53/0.00/0.40)
76 | 48 | 99 | |
---|---|---|---|
RGB | 118 | 72 | 153 |
HSL | 274° | 36.00% | 44.12% |
HSB/HSV | 274° | 52.94% | 60.00% |
CMYK | 22.88% | 52.94% | 0.00% |
40.00% |
HEX | 76 | 48 | 99 |
Decimal | 118 | 72 | 153 |
Binary | 1110110 | 1001000 | 10011001 |
Octal | 166 | 110 | 231 |
Examples of css and html codes for elements with #764899 color. Also use rgb(118,72,153) instead hex code.
.myTextColor { color: #764899; }
<p style="color:#764899">This sample text font color is #764899.</p>
This text font color is #764899.
.myBgColor { background-color: #764899; }
<div style="background-color:#764899">Inner text</div>
This div background color is #764899.
.myBorderColor { border: 1px solid #764899; }
<div style="border:3px solid #764899">Div</div>
This div border color is #764899.
.myOpacity80 { color: #764899; opacity: 0.8; }
<p style="color:#764899;opacity:0.8;">80%</p>
Text with #764899 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #764899;}
<p style="text-shadow: 3px 3px 1px #764899">Text here.</p>
This text has shadow with #764899 color.
.textShadow {text-shadow: 3px 3px 1px #764899, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #764899, 5px 5px 20px red">Text here.</p>
This text has shadow with #764899 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#764899, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#764899, Direction=45, Strength=4)">Text</p>
This text has shadow with #764899 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #764899; -webkit-box-shadow: 1px 1px 3px 2px #764899; box-shadow: 1px 1px 3px 2px #764899; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #764899; -webkit-box-shadow: 1px 1px 3px 2px #764899; box-shadow:1px 1px 3px 2px #764899;">
Div content here</div>
This text has color #764899 on black background.
This text has color #764899 on white background.
This text has black color on #764899 background.
This text has white color on #764899 background.