HEX: #FD5EB1
RGB: (253,94,177)
#FD5EB1 contains mainly red color. Web safe color of #FD5EB1 is #FF6699 (or #F69).
#FD5EB1 color RGB value is (253,94,177).
RGB: (253,94,177) (99%,37%,69%)
R 253 of 255 = 99%
G 94 of 255 = 37%
B 177 of 255 = 69%
R + G + B ~ 68%. #FD5EB1 is quite light color.
R + G + B =
253 + 94 + 177 = 524 (100%)
R 253 of 524 ~ 48.28%
G 94 of 524 ~ 17.94%
B 177 of 524 ~ 33.78%
#FD5EB1 color CMYK value is (0,63,30,1).
CMYK: (0,63,30,1) C0M63Y30K1 (0%,63%,30%,1%) (0.00/0.63/0.30/0.01)
FD | 5E | B1 | |
---|---|---|---|
RGB | 253 | 94 | 177 |
HSL | 329° | 97.55% | 68.04% |
HSB/HSV | 329° | 62.85% | 99.22% |
CMYK | 0.00% | 62.85% | 30.04% |
0.78% |
HEX | FD | 5E | B1 |
Decimal | 253 | 94 | 177 |
Binary | 11111101 | 1011110 | 10110001 |
Octal | 375 | 136 | 261 |
Examples of css and html codes for elements with #FD5EB1 color. Also use rgb(253,94,177) instead hex code.
.myTextColor { color: #FD5EB1; }
<p style="color:#FD5EB1">This sample text font color is #FD5EB1.</p>
This text font color is #FD5EB1.
.myBgColor { background-color: #FD5EB1; }
<div style="background-color:#FD5EB1">Inner text</div>
This div background color is #FD5EB1.
.myBorderColor { border: 1px solid #FD5EB1; }
<div style="border:3px solid #FD5EB1">Div</div>
This div border color is #FD5EB1.
.myOpacity80 { color: #FD5EB1; opacity: 0.8; }
<p style="color:#FD5EB1;opacity:0.8;">80%</p>
Text with #FD5EB1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FD5EB1;}
<p style="text-shadow: 3px 3px 1px #FD5EB1">Text here.</p>
This text has shadow with #FD5EB1 color.
.textShadow {text-shadow: 3px 3px 1px #FD5EB1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FD5EB1, 5px 5px 20px red">Text here.</p>
This text has shadow with #FD5EB1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FD5EB1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FD5EB1, Direction=45, Strength=4)">Text</p>
This text has shadow with #FD5EB1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FD5EB1; -webkit-box-shadow: 1px 1px 3px 2px #FD5EB1; box-shadow: 1px 1px 3px 2px #FD5EB1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FD5EB1; -webkit-box-shadow: 1px 1px 3px 2px #FD5EB1; box-shadow:1px 1px 3px 2px #FD5EB1;">
Div content here</div>
This text has color #FD5EB1 on black background.
This text has color #FD5EB1 on white background.
This text has black color on #FD5EB1 background.
This text has white color on #FD5EB1 background.