HEX: #FAC5DB
RGB: (250,197,219)
#FAC5DB contains red, green and blue colors in about the same proportion. Web safe color of #FAC5DB is #FFCCCC (or #FCC).
#FAC5DB color RGB value is (250,197,219).
RGB: (250,197,219) (98%,77%,86%)
R 250 of 255 = 98%
G 197 of 255 = 77%
B 219 of 255 = 86%
R + G + B ~ 87%. #FAC5DB is light color.
R + G + B =
250 + 197 + 219 = 666 (100%)
R 250 of 666 ~ 37.54%
G 197 of 666 ~ 29.58%
B 219 of 666 ~ 32.88%
#FAC5DB color CMYK value is (0,21,12,2).
CMYK: (0,21,12,2) C0M21Y12K2 (0%,21%,12%,2%) (0.00/0.21/0.12/0.02)
FA | C5 | DB | |
---|---|---|---|
RGB | 250 | 197 | 219 |
HSL | 335° | 84.13% | 87.65% |
HSB/HSV | 335° | 21.20% | 98.04% |
CMYK | 0.00% | 21.20% | 12.40% |
1.96% |
HEX | FA | C5 | DB |
Decimal | 250 | 197 | 219 |
Binary | 11111010 | 11000101 | 11011011 |
Octal | 372 | 305 | 333 |
Examples of css and html codes for elements with #FAC5DB color. Also use rgb(250,197,219) instead hex code.
.myTextColor { color: #FAC5DB; }
<p style="color:#FAC5DB">This sample text font color is #FAC5DB.</p>
This text font color is #FAC5DB.
.myBgColor { background-color: #FAC5DB; }
<div style="background-color:#FAC5DB">Inner text</div>
This div background color is #FAC5DB.
.myBorderColor { border: 1px solid #FAC5DB; }
<div style="border:3px solid #FAC5DB">Div</div>
This div border color is #FAC5DB.
.myOpacity80 { color: #FAC5DB; opacity: 0.8; }
<p style="color:#FAC5DB;opacity:0.8;">80%</p>
Text with #FAC5DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAC5DB;}
<p style="text-shadow: 3px 3px 1px #FAC5DB">Text here.</p>
This text has shadow with #FAC5DB color.
.textShadow {text-shadow: 3px 3px 1px #FAC5DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAC5DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAC5DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAC5DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAC5DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAC5DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAC5DB; -webkit-box-shadow: 1px 1px 3px 2px #FAC5DB; box-shadow: 1px 1px 3px 2px #FAC5DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAC5DB; -webkit-box-shadow: 1px 1px 3px 2px #FAC5DB; box-shadow:1px 1px 3px 2px #FAC5DB;">
Div content here</div>
This text has color #FAC5DB on black background.
This text has color #FAC5DB on white background.
This text has black color on #FAC5DB background.
This text has white color on #FAC5DB background.