HEX: #FE55B4
RGB: (254,85,180)
#FE55B4 contains mainly red color. Web safe color of #FE55B4 is #FF66CC (or #F6C).
#FE55B4 color RGB value is (254,85,180).
RGB: (254,85,180) (100%,33%,71%)
R 254 of 255 = 100%
G 85 of 255 = 33%
B 180 of 255 = 71%
R + G + B ~ 68%. #FE55B4 is quite light color.
R + G + B =
254 + 85 + 180 = 519 (100%)
R 254 of 519 ~ 48.94%
G 85 of 519 ~ 16.38%
B 180 of 519 ~ 34.68%
#FE55B4 color CMYK value is (0,67,29,0).
CMYK: (0,67,29,0) C0M67Y29K0 (0%,67%,29%,0%) (0.00/0.67/0.29/0.00)
FE | 55 | B4 | |
---|---|---|---|
RGB | 254 | 85 | 180 |
HSL | 326° | 98.83% | 66.47% |
HSB/HSV | 326° | 66.54% | 99.61% |
CMYK | 0.00% | 66.54% | 29.13% |
0.39% |
HEX | FE | 55 | B4 |
Decimal | 254 | 85 | 180 |
Binary | 11111110 | 1010101 | 10110100 |
Octal | 376 | 125 | 264 |
Examples of css and html codes for elements with #FE55B4 color. Also use rgb(254,85,180) instead hex code.
.myTextColor { color: #FE55B4; }
<p style="color:#FE55B4">This sample text font color is #FE55B4.</p>
This text font color is #FE55B4.
.myBgColor { background-color: #FE55B4; }
<div style="background-color:#FE55B4">Inner text</div>
This div background color is #FE55B4.
.myBorderColor { border: 1px solid #FE55B4; }
<div style="border:3px solid #FE55B4">Div</div>
This div border color is #FE55B4.
.myOpacity80 { color: #FE55B4; opacity: 0.8; }
<p style="color:#FE55B4;opacity:0.8;">80%</p>
Text with #FE55B4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FE55B4;}
<p style="text-shadow: 3px 3px 1px #FE55B4">Text here.</p>
This text has shadow with #FE55B4 color.
.textShadow {text-shadow: 3px 3px 1px #FE55B4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FE55B4, 5px 5px 20px red">Text here.</p>
This text has shadow with #FE55B4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FE55B4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FE55B4, Direction=45, Strength=4)">Text</p>
This text has shadow with #FE55B4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FE55B4; -webkit-box-shadow: 1px 1px 3px 2px #FE55B4; box-shadow: 1px 1px 3px 2px #FE55B4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FE55B4; -webkit-box-shadow: 1px 1px 3px 2px #FE55B4; box-shadow:1px 1px 3px 2px #FE55B4;">
Div content here</div>
This text has color #FE55B4 on black background.
This text has color #FE55B4 on white background.
This text has black color on #FE55B4 background.
This text has white color on #FE55B4 background.