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