HEX: #538ABD
RGB: (83,138,189)
#538ABD contains mainly green and blue colors. Web safe color of #538ABD is #6699CC (or #69C).
#538ABD color RGB value is (83,138,189).
RGB: (83,138,189) (33%,54%,74%)
R 83 of 255 = 33%
G 138 of 255 = 54%
B 189 of 255 = 74%
R + G + B ~ 54%. #538ABD is middle color (not dark and not light).
R + G + B =
83 + 138 + 189 = 410 (100%)
R 83 of 410 ~ 20.24%
G 138 of 410 ~ 33.66%
B 189 of 410 ~ 46.1%
#538ABD color CMYK value is (56,27,0,26).
CMYK: (56,27,0,26) C56M27Y0K26 (56%,27%,0%,26%) (0.56/0.27/0.00/0.26)
53 | 8A | BD | |
---|---|---|---|
RGB | 83 | 138 | 189 |
HSL | 209° | 44.54% | 53.33% |
HSB/HSV | 209° | 56.08% | 74.12% |
CMYK | 56.08% | 26.98% | 0.00% |
25.88% |
HEX | 53 | 8A | BD |
Decimal | 83 | 138 | 189 |
Binary | 1010011 | 10001010 | 10111101 |
Octal | 123 | 212 | 275 |
Examples of css and html codes for elements with #538ABD color. Also use rgb(83,138,189) instead hex code.
.myTextColor { color: #538ABD; }
<p style="color:#538ABD">This sample text font color is #538ABD.</p>
This text font color is #538ABD.
.myBgColor { background-color: #538ABD; }
<div style="background-color:#538ABD">Inner text</div>
This div background color is #538ABD.
.myBorderColor { border: 1px solid #538ABD; }
<div style="border:3px solid #538ABD">Div</div>
This div border color is #538ABD.
.myOpacity80 { color: #538ABD; opacity: 0.8; }
<p style="color:#538ABD;opacity:0.8;">80%</p>
Text with #538ABD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #538ABD;}
<p style="text-shadow: 3px 3px 1px #538ABD">Text here.</p>
This text has shadow with #538ABD color.
.textShadow {text-shadow: 3px 3px 1px #538ABD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #538ABD, 5px 5px 20px red">Text here.</p>
This text has shadow with #538ABD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#538ABD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#538ABD, Direction=45, Strength=4)">Text</p>
This text has shadow with #538ABD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #538ABD; -webkit-box-shadow: 1px 1px 3px 2px #538ABD; box-shadow: 1px 1px 3px 2px #538ABD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #538ABD; -webkit-box-shadow: 1px 1px 3px 2px #538ABD; box-shadow:1px 1px 3px 2px #538ABD;">
Div content here</div>
This text has color #538ABD on black background.
This text has color #538ABD on white background.
This text has black color on #538ABD background.
This text has white color on #538ABD background.