HEX: #FFABD4
RGB: (255,171,212)
#FFABD4 contains mainly red and blue colors. Web safe color of #FFABD4 is #FF99CC (or #F9C).
#FFABD4 color RGB value is (255,171,212).
RGB: (255,171,212) (100%,67%,83%)
R 255 of 255 = 100%
G 171 of 255 = 67%
B 212 of 255 = 83%
R + G + B ~ 83%. #FFABD4 is quite light color.
R + G + B =
255 + 171 + 212 = 638 (100%)
R 255 of 638 ~ 39.97%
G 171 of 638 ~ 26.8%
B 212 of 638 ~ 33.23%
#FFABD4 color CMYK value is (0,33,17,0).
CMYK: (0,33,17,0) C0M33Y17K0 (0%,33%,17%,0%) (0.00/0.33/0.17/0.00)
FF | AB | D4 | |
---|---|---|---|
RGB | 255 | 171 | 212 |
HSL | 331° | 100.00% | 83.53% |
HSB/HSV | 331° | 32.94% | 100.00% |
CMYK | 0.00% | 32.94% | 16.86% |
0.00% |
HEX | FF | AB | D4 |
Decimal | 255 | 171 | 212 |
Binary | 11111111 | 10101011 | 11010100 |
Octal | 377 | 253 | 324 |
Examples of css and html codes for elements with #FFABD4 color. Also use rgb(255,171,212) instead hex code.
.myTextColor { color: #FFABD4; }
<p style="color:#FFABD4">This sample text font color is #FFABD4.</p>
This text font color is #FFABD4.
.myBgColor { background-color: #FFABD4; }
<div style="background-color:#FFABD4">Inner text</div>
This div background color is #FFABD4.
.myBorderColor { border: 1px solid #FFABD4; }
<div style="border:3px solid #FFABD4">Div</div>
This div border color is #FFABD4.
.myOpacity80 { color: #FFABD4; opacity: 0.8; }
<p style="color:#FFABD4;opacity:0.8;">80%</p>
Text with #FFABD4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFABD4;}
<p style="text-shadow: 3px 3px 1px #FFABD4">Text here.</p>
This text has shadow with #FFABD4 color.
.textShadow {text-shadow: 3px 3px 1px #FFABD4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFABD4, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFABD4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFABD4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFABD4, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFABD4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFABD4; -webkit-box-shadow: 1px 1px 3px 2px #FFABD4; box-shadow: 1px 1px 3px 2px #FFABD4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFABD4; -webkit-box-shadow: 1px 1px 3px 2px #FFABD4; box-shadow:1px 1px 3px 2px #FFABD4;">
Div content here</div>
This text has color #FFABD4 on black background.
This text has color #FFABD4 on white background.
This text has black color on #FFABD4 background.
This text has white color on #FFABD4 background.