HEX: #57ABFF
RGB: (87,171,255)
#57ABFF contains mainly blue color. Web safe color of #57ABFF is #6699FF (or #69F).
#57ABFF color RGB value is (87,171,255).
RGB: (87,171,255) (34%,67%,100%)
R 87 of 255 = 34%
G 171 of 255 = 67%
B 255 of 255 = 100%
R + G + B ~ 67%. #57ABFF is quite light color.
R + G + B =
87 + 171 + 255 = 513 (100%)
R 87 of 513 ~ 16.96%
G 171 of 513 ~ 33.33%
B 255 of 513 ~ 49.71%
#57ABFF color CMYK value is (66,33,0,0).
CMYK: (66,33,0,0) C66M33Y0K0 (66%,33%,0%,0%) (0.66/0.33/0.00/0.00)
57 | AB | FF | |
---|---|---|---|
RGB | 87 | 171 | 255 |
HSL | 210° | 100.00% | 67.06% |
HSB/HSV | 210° | 65.88% | 100.00% |
CMYK | 65.88% | 32.94% | 0.00% |
0.00% |
HEX | 57 | AB | FF |
Decimal | 87 | 171 | 255 |
Binary | 1010111 | 10101011 | 11111111 |
Octal | 127 | 253 | 377 |
Examples of css and html codes for elements with #57ABFF color. Also use rgb(87,171,255) instead hex code.
.myTextColor { color: #57ABFF; }
<p style="color:#57ABFF">This sample text font color is #57ABFF.</p>
This text font color is #57ABFF.
.myBgColor { background-color: #57ABFF; }
<div style="background-color:#57ABFF">Inner text</div>
This div background color is #57ABFF.
.myBorderColor { border: 1px solid #57ABFF; }
<div style="border:3px solid #57ABFF">Div</div>
This div border color is #57ABFF.
.myOpacity80 { color: #57ABFF; opacity: 0.8; }
<p style="color:#57ABFF;opacity:0.8;">80%</p>
Text with #57ABFF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #57ABFF;}
<p style="text-shadow: 3px 3px 1px #57ABFF">Text here.</p>
This text has shadow with #57ABFF color.
.textShadow {text-shadow: 3px 3px 1px #57ABFF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #57ABFF, 5px 5px 20px red">Text here.</p>
This text has shadow with #57ABFF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#57ABFF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#57ABFF, Direction=45, Strength=4)">Text</p>
This text has shadow with #57ABFF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #57ABFF; -webkit-box-shadow: 1px 1px 3px 2px #57ABFF; box-shadow: 1px 1px 3px 2px #57ABFF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #57ABFF; -webkit-box-shadow: 1px 1px 3px 2px #57ABFF; box-shadow:1px 1px 3px 2px #57ABFF;">
Div content here</div>
This text has color #57ABFF on black background.
This text has color #57ABFF on white background.
This text has black color on #57ABFF background.
This text has white color on #57ABFF background.