HEX: #FABED6
RGB: (250,190,214)
#FABED6 contains mainly red and blue colors. Web safe color of #FABED6 is #FFCCCC (or #FCC).
#FABED6 color RGB value is (250,190,214).
RGB: (250,190,214) (98%,75%,84%)
R 250 of 255 = 98%
G 190 of 255 = 75%
B 214 of 255 = 84%
R + G + B ~ 86%. #FABED6 is light color.
R + G + B =
250 + 190 + 214 = 654 (100%)
R 250 of 654 ~ 38.23%
G 190 of 654 ~ 29.05%
B 214 of 654 ~ 32.72%
#FABED6 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 | BE | D6 | |
---|---|---|---|
RGB | 250 | 190 | 214 |
HSL | 336° | 85.71% | 86.27% |
HSB/HSV | 336° | 24.00% | 98.04% |
CMYK | 0.00% | 24.00% | 14.40% |
1.96% |
HEX | FA | BE | D6 |
Decimal | 250 | 190 | 214 |
Binary | 11111010 | 10111110 | 11010110 |
Octal | 372 | 276 | 326 |
Examples of css and html codes for elements with #FABED6 color. Also use rgb(250,190,214) instead hex code.
.myTextColor { color: #FABED6; }
<p style="color:#FABED6">This sample text font color is #FABED6.</p>
This text font color is #FABED6.
.myBgColor { background-color: #FABED6; }
<div style="background-color:#FABED6">Inner text</div>
This div background color is #FABED6.
.myBorderColor { border: 1px solid #FABED6; }
<div style="border:3px solid #FABED6">Div</div>
This div border color is #FABED6.
.myOpacity80 { color: #FABED6; opacity: 0.8; }
<p style="color:#FABED6;opacity:0.8;">80%</p>
Text with #FABED6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FABED6;}
<p style="text-shadow: 3px 3px 1px #FABED6">Text here.</p>
This text has shadow with #FABED6 color.
.textShadow {text-shadow: 3px 3px 1px #FABED6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FABED6, 5px 5px 20px red">Text here.</p>
This text has shadow with #FABED6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FABED6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FABED6, Direction=45, Strength=4)">Text</p>
This text has shadow with #FABED6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FABED6; -webkit-box-shadow: 1px 1px 3px 2px #FABED6; box-shadow: 1px 1px 3px 2px #FABED6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FABED6; -webkit-box-shadow: 1px 1px 3px 2px #FABED6; box-shadow:1px 1px 3px 2px #FABED6;">
Div content here</div>
This text has color #FABED6 on black background.
This text has color #FABED6 on white background.
This text has black color on #FABED6 background.
This text has white color on #FABED6 background.