HEX: #52739D
RGB: (82,115,157)
#52739D contains mainly green and blue colors. Web safe color of #52739D is #666699 (or #669).
#52739D color RGB value is (82,115,157).
RGB: (82,115,157) (32%,45%,62%)
R 82 of 255 = 32%
G 115 of 255 = 45%
B 157 of 255 = 62%
R + G + B ~ 46%. #52739D is middle color (not dark and not light).
R + G + B =
82 + 115 + 157 = 354 (100%)
R 82 of 354 ~ 23.16%
G 115 of 354 ~ 32.49%
B 157 of 354 ~ 44.35%
#52739D color CMYK value is (48,27,0,38).
CMYK: (48,27,0,38) C48M27Y0K38 (48%,27%,0%,38%) (0.48/0.27/0.00/0.38)
52 | 73 | 9D | |
---|---|---|---|
RGB | 82 | 115 | 157 |
HSL | 214° | 31.38% | 46.86% |
HSB/HSV | 214° | 47.77% | 61.57% |
CMYK | 47.77% | 26.75% | 0.00% |
38.43% |
HEX | 52 | 73 | 9D |
Decimal | 82 | 115 | 157 |
Binary | 1010010 | 1110011 | 10011101 |
Octal | 122 | 163 | 235 |
Examples of css and html codes for elements with #52739D color. Also use rgb(82,115,157) instead hex code.
.myTextColor { color: #52739D; }
<p style="color:#52739D">This sample text font color is #52739D.</p>
This text font color is #52739D.
.myBgColor { background-color: #52739D; }
<div style="background-color:#52739D">Inner text</div>
This div background color is #52739D.
.myBorderColor { border: 1px solid #52739D; }
<div style="border:3px solid #52739D">Div</div>
This div border color is #52739D.
.myOpacity80 { color: #52739D; opacity: 0.8; }
<p style="color:#52739D;opacity:0.8;">80%</p>
Text with #52739D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #52739D;}
<p style="text-shadow: 3px 3px 1px #52739D">Text here.</p>
This text has shadow with #52739D color.
.textShadow {text-shadow: 3px 3px 1px #52739D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #52739D, 5px 5px 20px red">Text here.</p>
This text has shadow with #52739D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#52739D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#52739D, Direction=45, Strength=4)">Text</p>
This text has shadow with #52739D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #52739D; -webkit-box-shadow: 1px 1px 3px 2px #52739D; box-shadow: 1px 1px 3px 2px #52739D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #52739D; -webkit-box-shadow: 1px 1px 3px 2px #52739D; box-shadow:1px 1px 3px 2px #52739D;">
Div content here</div>
This text has color #52739D on black background.
This text has color #52739D on white background.
This text has black color on #52739D background.
This text has white color on #52739D background.