HEX: #FABDD8
RGB: (250,189,216)
#FABDD8 contains mainly red and blue colors. Web safe color of #FABDD8 is #FFCCCC (or #FCC).
#FABDD8 color RGB value is (250,189,216).
RGB: (250,189,216) (98%,74%,85%)
R 250 of 255 = 98%
G 189 of 255 = 74%
B 216 of 255 = 85%
R + G + B ~ 86%. #FABDD8 is light color.
R + G + B =
250 + 189 + 216 = 655 (100%)
R 250 of 655 ~ 38.17%
G 189 of 655 ~ 28.85%
B 216 of 655 ~ 32.98%
#FABDD8 color CMYK value is (0,24,14,2).
CMYK: (0,24,14,2) C0M24Y14K2 (0%,24%,14%,2%) (0.00/0.24/0.14/0.02)
FA | BD | D8 | |
---|---|---|---|
RGB | 250 | 189 | 216 |
HSL | 333° | 85.92% | 86.08% |
HSB/HSV | 333° | 24.40% | 98.04% |
CMYK | 0.00% | 24.40% | 13.60% |
1.96% |
HEX | FA | BD | D8 |
Decimal | 250 | 189 | 216 |
Binary | 11111010 | 10111101 | 11011000 |
Octal | 372 | 275 | 330 |
Examples of css and html codes for elements with #FABDD8 color. Also use rgb(250,189,216) instead hex code.
.myTextColor { color: #FABDD8; }
<p style="color:#FABDD8">This sample text font color is #FABDD8.</p>
This text font color is #FABDD8.
.myBgColor { background-color: #FABDD8; }
<div style="background-color:#FABDD8">Inner text</div>
This div background color is #FABDD8.
.myBorderColor { border: 1px solid #FABDD8; }
<div style="border:3px solid #FABDD8">Div</div>
This div border color is #FABDD8.
.myOpacity80 { color: #FABDD8; opacity: 0.8; }
<p style="color:#FABDD8;opacity:0.8;">80%</p>
Text with #FABDD8 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FABDD8;}
<p style="text-shadow: 3px 3px 1px #FABDD8">Text here.</p>
This text has shadow with #FABDD8 color.
.textShadow {text-shadow: 3px 3px 1px #FABDD8, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FABDD8, 5px 5px 20px red">Text here.</p>
This text has shadow with #FABDD8 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FABDD8, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FABDD8, Direction=45, Strength=4)">Text</p>
This text has shadow with #FABDD8 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FABDD8; -webkit-box-shadow: 1px 1px 3px 2px #FABDD8; box-shadow: 1px 1px 3px 2px #FABDD8; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FABDD8; -webkit-box-shadow: 1px 1px 3px 2px #FABDD8; box-shadow:1px 1px 3px 2px #FABDD8;">
Div content here</div>
This text has color #FABDD8 on black background.
This text has color #FABDD8 on white background.
This text has black color on #FABDD8 background.
This text has white color on #FABDD8 background.