HEX: #4995E3
RGB: (73,149,227)
#4995E3 contains mainly blue color. Web safe color of #4995E3 is #3399CC (or #39C).
#4995E3 color RGB value is (73,149,227).
RGB: (73,149,227) (29%,58%,89%)
R 73 of 255 = 29%
G 149 of 255 = 58%
B 227 of 255 = 89%
R + G + B ~ 59%. #4995E3 is middle color (not dark and not light).
R + G + B =
73 + 149 + 227 = 449 (100%)
R 73 of 449 ~ 16.26%
G 149 of 449 ~ 33.18%
B 227 of 449 ~ 50.56%
#4995E3 color CMYK value is (68,34,0,11).
CMYK: (68,34,0,11) C68M34Y0K11 (68%,34%,0%,11%) (0.68/0.34/0.00/0.11)
49 | 95 | E3 | |
---|---|---|---|
RGB | 73 | 149 | 227 |
HSL | 210° | 73.33% | 58.82% |
HSB/HSV | 210° | 67.84% | 89.02% |
CMYK | 67.84% | 34.36% | 0.00% |
10.98% |
HEX | 49 | 95 | E3 |
Decimal | 73 | 149 | 227 |
Binary | 1001001 | 10010101 | 11100011 |
Octal | 111 | 225 | 343 |
Examples of css and html codes for elements with #4995E3 color. Also use rgb(73,149,227) instead hex code.
.myTextColor { color: #4995E3; }
<p style="color:#4995E3">This sample text font color is #4995E3.</p>
This text font color is #4995E3.
.myBgColor { background-color: #4995E3; }
<div style="background-color:#4995E3">Inner text</div>
This div background color is #4995E3.
.myBorderColor { border: 1px solid #4995E3; }
<div style="border:3px solid #4995E3">Div</div>
This div border color is #4995E3.
.myOpacity80 { color: #4995E3; opacity: 0.8; }
<p style="color:#4995E3;opacity:0.8;">80%</p>
Text with #4995E3 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4995E3;}
<p style="text-shadow: 3px 3px 1px #4995E3">Text here.</p>
This text has shadow with #4995E3 color.
.textShadow {text-shadow: 3px 3px 1px #4995E3, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4995E3, 5px 5px 20px red">Text here.</p>
This text has shadow with #4995E3 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4995E3, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4995E3, Direction=45, Strength=4)">Text</p>
This text has shadow with #4995E3 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4995E3; -webkit-box-shadow: 1px 1px 3px 2px #4995E3; box-shadow: 1px 1px 3px 2px #4995E3; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4995E3; -webkit-box-shadow: 1px 1px 3px 2px #4995E3; box-shadow:1px 1px 3px 2px #4995E3;">
Div content here</div>
This text has color #4995E3 on black background.
This text has color #4995E3 on white background.
This text has black color on #4995E3 background.
This text has white color on #4995E3 background.