HEX: #4996BA
RGB: (73,150,186)
#4996BA contains mainly green and blue colors. Web safe color of #4996BA is #3399CC (or #39C).
#4996BA color RGB value is (73,150,186).
RGB: (73,150,186) (29%,59%,73%)
R 73 of 255 = 29%
G 150 of 255 = 59%
B 186 of 255 = 73%
R + G + B ~ 54%. #4996BA is middle color (not dark and not light).
R + G + B =
73 + 150 + 186 = 409 (100%)
R 73 of 409 ~ 17.85%
G 150 of 409 ~ 36.67%
B 186 of 409 ~ 45.48%
#4996BA color CMYK value is (61,19,0,27).
CMYK: (61,19,0,27) C61M19Y0K27 (61%,19%,0%,27%) (0.61/0.19/0.00/0.27)
49 | 96 | BA | |
---|---|---|---|
RGB | 73 | 150 | 186 |
HSL | 199° | 45.02% | 50.78% |
HSB/HSV | 199° | 60.75% | 72.94% |
CMYK | 60.75% | 19.35% | 0.00% |
27.06% |
HEX | 49 | 96 | BA |
Decimal | 73 | 150 | 186 |
Binary | 1001001 | 10010110 | 10111010 |
Octal | 111 | 226 | 272 |
Examples of css and html codes for elements with #4996BA color. Also use rgb(73,150,186) instead hex code.
.myTextColor { color: #4996BA; }
<p style="color:#4996BA">This sample text font color is #4996BA.</p>
This text font color is #4996BA.
.myBgColor { background-color: #4996BA; }
<div style="background-color:#4996BA">Inner text</div>
This div background color is #4996BA.
.myBorderColor { border: 1px solid #4996BA; }
<div style="border:3px solid #4996BA">Div</div>
This div border color is #4996BA.
.myOpacity80 { color: #4996BA; opacity: 0.8; }
<p style="color:#4996BA;opacity:0.8;">80%</p>
Text with #4996BA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4996BA;}
<p style="text-shadow: 3px 3px 1px #4996BA">Text here.</p>
This text has shadow with #4996BA color.
.textShadow {text-shadow: 3px 3px 1px #4996BA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4996BA, 5px 5px 20px red">Text here.</p>
This text has shadow with #4996BA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4996BA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4996BA, Direction=45, Strength=4)">Text</p>
This text has shadow with #4996BA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4996BA; -webkit-box-shadow: 1px 1px 3px 2px #4996BA; box-shadow: 1px 1px 3px 2px #4996BA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4996BA; -webkit-box-shadow: 1px 1px 3px 2px #4996BA; box-shadow:1px 1px 3px 2px #4996BA;">
Div content here</div>
This text has color #4996BA on black background.
This text has color #4996BA on white background.
This text has black color on #4996BA background.
This text has white color on #4996BA background.