HEX: #64499B
RGB: (100,73,155)
#64499B contains mainly red and blue colors. Web safe color of #64499B is #663399 (or #639).
#64499B color RGB value is (100,73,155).
RGB: (100,73,155) (39%,29%,61%)
R 100 of 255 = 39%
G 73 of 255 = 29%
B 155 of 255 = 61%
R + G + B ~ 43%. #64499B is middle color (not dark and not light).
R + G + B =
100 + 73 + 155 = 328 (100%)
R 100 of 328 ~ 30.49%
G 73 of 328 ~ 22.26%
B 155 of 328 ~ 47.26%
#64499B color CMYK value is (35,53,0,39).
CMYK: (35,53,0,39) C35M53Y0K39 (35%,53%,0%,39%) (0.35/0.53/0.00/0.39)
64 | 49 | 9B | |
---|---|---|---|
RGB | 100 | 73 | 155 |
HSL | 260° | 35.96% | 44.71% |
HSB/HSV | 260° | 52.90% | 60.78% |
CMYK | 35.48% | 52.90% | 0.00% |
39.22% |
HEX | 64 | 49 | 9B |
Decimal | 100 | 73 | 155 |
Binary | 1100100 | 1001001 | 10011011 |
Octal | 144 | 111 | 233 |
Examples of css and html codes for elements with #64499B color. Also use rgb(100,73,155) instead hex code.
.myTextColor { color: #64499B; }
<p style="color:#64499B">This sample text font color is #64499B.</p>
This text font color is #64499B.
.myBgColor { background-color: #64499B; }
<div style="background-color:#64499B">Inner text</div>
This div background color is #64499B.
.myBorderColor { border: 1px solid #64499B; }
<div style="border:3px solid #64499B">Div</div>
This div border color is #64499B.
.myOpacity80 { color: #64499B; opacity: 0.8; }
<p style="color:#64499B;opacity:0.8;">80%</p>
Text with #64499B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #64499B;}
<p style="text-shadow: 3px 3px 1px #64499B">Text here.</p>
This text has shadow with #64499B color.
.textShadow {text-shadow: 3px 3px 1px #64499B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #64499B, 5px 5px 20px red">Text here.</p>
This text has shadow with #64499B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#64499B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#64499B, Direction=45, Strength=4)">Text</p>
This text has shadow with #64499B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #64499B; -webkit-box-shadow: 1px 1px 3px 2px #64499B; box-shadow: 1px 1px 3px 2px #64499B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #64499B; -webkit-box-shadow: 1px 1px 3px 2px #64499B; box-shadow:1px 1px 3px 2px #64499B;">
Div content here</div>
This text has color #64499B on black background.
This text has color #64499B on white background.
This text has black color on #64499B background.
This text has white color on #64499B background.