HEX: #4D8CAD
RGB: (77,140,173)
#4D8CAD contains mainly green and blue colors. Web safe color of #4D8CAD is #339999 (or #399).
#4D8CAD color RGB value is (77,140,173).
RGB: (77,140,173) (30%,55%,68%)
R 77 of 255 = 30%
G 140 of 255 = 55%
B 173 of 255 = 68%
R + G + B ~ 51%. #4D8CAD is middle color (not dark and not light).
R + G + B =
77 + 140 + 173 = 390 (100%)
R 77 of 390 ~ 19.74%
G 140 of 390 ~ 35.9%
B 173 of 390 ~ 44.36%
#4D8CAD color CMYK value is (55,19,0,32).
CMYK: (55,19,0,32) C55M19Y0K32 (55%,19%,0%,32%) (0.55/0.19/0.00/0.32)
4D | 8C | AD | |
---|---|---|---|
RGB | 77 | 140 | 173 |
HSL | 201° | 38.40% | 49.02% |
HSB/HSV | 201° | 55.49% | 67.84% |
CMYK | 55.49% | 19.08% | 0.00% |
32.16% |
HEX | 4D | 8C | AD |
Decimal | 77 | 140 | 173 |
Binary | 1001101 | 10001100 | 10101101 |
Octal | 115 | 214 | 255 |
Examples of css and html codes for elements with #4D8CAD color. Also use rgb(77,140,173) instead hex code.
.myTextColor { color: #4D8CAD; }
<p style="color:#4D8CAD">This sample text font color is #4D8CAD.</p>
This text font color is #4D8CAD.
.myBgColor { background-color: #4D8CAD; }
<div style="background-color:#4D8CAD">Inner text</div>
This div background color is #4D8CAD.
.myBorderColor { border: 1px solid #4D8CAD; }
<div style="border:3px solid #4D8CAD">Div</div>
This div border color is #4D8CAD.
.myOpacity80 { color: #4D8CAD; opacity: 0.8; }
<p style="color:#4D8CAD;opacity:0.8;">80%</p>
Text with #4D8CAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4D8CAD;}
<p style="text-shadow: 3px 3px 1px #4D8CAD">Text here.</p>
This text has shadow with #4D8CAD color.
.textShadow {text-shadow: 3px 3px 1px #4D8CAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4D8CAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #4D8CAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4D8CAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4D8CAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #4D8CAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4D8CAD; -webkit-box-shadow: 1px 1px 3px 2px #4D8CAD; box-shadow: 1px 1px 3px 2px #4D8CAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4D8CAD; -webkit-box-shadow: 1px 1px 3px 2px #4D8CAD; box-shadow:1px 1px 3px 2px #4D8CAD;">
Div content here</div>
This text has color #4D8CAD on black background.
This text has color #4D8CAD on white background.
This text has black color on #4D8CAD background.
This text has white color on #4D8CAD background.