HEX: #538BAD
RGB: (83,139,173)
#538BAD contains mainly green and blue colors. Web safe color of #538BAD is #669999 (or #699).
#538BAD color RGB value is (83,139,173).
RGB: (83,139,173) (33%,55%,68%)
R 83 of 255 = 33%
G 139 of 255 = 55%
B 173 of 255 = 68%
R + G + B ~ 52%. #538BAD is middle color (not dark and not light).
R + G + B =
83 + 139 + 173 = 395 (100%)
R 83 of 395 ~ 21.01%
G 139 of 395 ~ 35.19%
B 173 of 395 ~ 43.8%
#538BAD color CMYK value is (52,20,0,32).
CMYK: (52,20,0,32) C52M20Y0K32 (52%,20%,0%,32%) (0.52/0.20/0.00/0.32)
53 | 8B | AD | |
---|---|---|---|
RGB | 83 | 139 | 173 |
HSL | 203° | 35.43% | 50.20% |
HSB/HSV | 203° | 52.02% | 67.84% |
CMYK | 52.02% | 19.65% | 0.00% |
32.16% |
HEX | 53 | 8B | AD |
Decimal | 83 | 139 | 173 |
Binary | 1010011 | 10001011 | 10101101 |
Octal | 123 | 213 | 255 |
Examples of css and html codes for elements with #538BAD color. Also use rgb(83,139,173) instead hex code.
.myTextColor { color: #538BAD; }
<p style="color:#538BAD">This sample text font color is #538BAD.</p>
This text font color is #538BAD.
.myBgColor { background-color: #538BAD; }
<div style="background-color:#538BAD">Inner text</div>
This div background color is #538BAD.
.myBorderColor { border: 1px solid #538BAD; }
<div style="border:3px solid #538BAD">Div</div>
This div border color is #538BAD.
.myOpacity80 { color: #538BAD; opacity: 0.8; }
<p style="color:#538BAD;opacity:0.8;">80%</p>
Text with #538BAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #538BAD;}
<p style="text-shadow: 3px 3px 1px #538BAD">Text here.</p>
This text has shadow with #538BAD color.
.textShadow {text-shadow: 3px 3px 1px #538BAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #538BAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #538BAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#538BAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#538BAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #538BAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #538BAD; -webkit-box-shadow: 1px 1px 3px 2px #538BAD; box-shadow: 1px 1px 3px 2px #538BAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #538BAD; -webkit-box-shadow: 1px 1px 3px 2px #538BAD; box-shadow:1px 1px 3px 2px #538BAD;">
Div content here</div>
This text has color #538BAD on black background.
This text has color #538BAD on white background.
This text has black color on #538BAD background.
This text has white color on #538BAD background.