HEX: #FABBE5
RGB: (250,187,229)
#FABBE5 contains mainly red and blue colors. Web safe color of #FABBE5 is #FFCCCC (or #FCC).
#FABBE5 color RGB value is (250,187,229).
RGB: (250,187,229) (98%,73%,90%)
R 250 of 255 = 98%
G 187 of 255 = 73%
B 229 of 255 = 90%
R + G + B ~ 87%. #FABBE5 is light color.
R + G + B =
250 + 187 + 229 = 666 (100%)
R 250 of 666 ~ 37.54%
G 187 of 666 ~ 28.08%
B 229 of 666 ~ 34.38%
#FABBE5 color CMYK value is (0,25,8,2).
CMYK: (0,25,8,2) C0M25Y8K2 (0%,25%,8%,2%) (0.00/0.25/0.08/0.02)
FA | BB | E5 | |
---|---|---|---|
RGB | 250 | 187 | 229 |
HSL | 320° | 86.30% | 85.69% |
HSB/HSV | 320° | 25.20% | 98.04% |
CMYK | 0.00% | 25.20% | 8.40% |
1.96% |
HEX | FA | BB | E5 |
Decimal | 250 | 187 | 229 |
Binary | 11111010 | 10111011 | 11100101 |
Octal | 372 | 273 | 345 |
Examples of css and html codes for elements with #FABBE5 color. Also use rgb(250,187,229) instead hex code.
.myTextColor { color: #FABBE5; }
<p style="color:#FABBE5">This sample text font color is #FABBE5.</p>
This text font color is #FABBE5.
.myBgColor { background-color: #FABBE5; }
<div style="background-color:#FABBE5">Inner text</div>
This div background color is #FABBE5.
.myBorderColor { border: 1px solid #FABBE5; }
<div style="border:3px solid #FABBE5">Div</div>
This div border color is #FABBE5.
.myOpacity80 { color: #FABBE5; opacity: 0.8; }
<p style="color:#FABBE5;opacity:0.8;">80%</p>
Text with #FABBE5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FABBE5;}
<p style="text-shadow: 3px 3px 1px #FABBE5">Text here.</p>
This text has shadow with #FABBE5 color.
.textShadow {text-shadow: 3px 3px 1px #FABBE5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FABBE5, 5px 5px 20px red">Text here.</p>
This text has shadow with #FABBE5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FABBE5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FABBE5, Direction=45, Strength=4)">Text</p>
This text has shadow with #FABBE5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FABBE5; -webkit-box-shadow: 1px 1px 3px 2px #FABBE5; box-shadow: 1px 1px 3px 2px #FABBE5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FABBE5; -webkit-box-shadow: 1px 1px 3px 2px #FABBE5; box-shadow:1px 1px 3px 2px #FABBE5;">
Div content here</div>
This text has color #FABBE5 on black background.
This text has color #FABBE5 on white background.
This text has black color on #FABBE5 background.
This text has white color on #FABBE5 background.