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