HEX: #FAA8EB
RGB: (250,168,235)
#FAA8EB contains mainly red and blue colors. Web safe color of #FAA8EB is #FF99FF (or #F9F).
#FAA8EB color RGB value is (250,168,235).
RGB: (250,168,235) (98%,66%,92%)
R 250 of 255 = 98%
G 168 of 255 = 66%
B 235 of 255 = 92%
R + G + B ~ 85%. #FAA8EB is quite light color.
R + G + B =
250 + 168 + 235 = 653 (100%)
R 250 of 653 ~ 38.28%
G 168 of 653 ~ 25.73%
B 235 of 653 ~ 35.99%
#FAA8EB color CMYK value is (0,33,6,2).
CMYK: (0,33,6,2) C0M33Y6K2 (0%,33%,6%,2%) (0.00/0.33/0.06/0.02)
FA | A8 | EB | |
---|---|---|---|
RGB | 250 | 168 | 235 |
HSL | 311° | 89.13% | 81.96% |
HSB/HSV | 311° | 32.80% | 98.04% |
CMYK | 0.00% | 32.80% | 6.00% |
1.96% |
HEX | FA | A8 | EB |
Decimal | 250 | 168 | 235 |
Binary | 11111010 | 10101000 | 11101011 |
Octal | 372 | 250 | 353 |
Examples of css and html codes for elements with #FAA8EB color. Also use rgb(250,168,235) instead hex code.
.myTextColor { color: #FAA8EB; }
<p style="color:#FAA8EB">This sample text font color is #FAA8EB.</p>
This text font color is #FAA8EB.
.myBgColor { background-color: #FAA8EB; }
<div style="background-color:#FAA8EB">Inner text</div>
This div background color is #FAA8EB.
.myBorderColor { border: 1px solid #FAA8EB; }
<div style="border:3px solid #FAA8EB">Div</div>
This div border color is #FAA8EB.
.myOpacity80 { color: #FAA8EB; opacity: 0.8; }
<p style="color:#FAA8EB;opacity:0.8;">80%</p>
Text with #FAA8EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAA8EB;}
<p style="text-shadow: 3px 3px 1px #FAA8EB">Text here.</p>
This text has shadow with #FAA8EB color.
.textShadow {text-shadow: 3px 3px 1px #FAA8EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAA8EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAA8EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAA8EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAA8EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAA8EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAA8EB; -webkit-box-shadow: 1px 1px 3px 2px #FAA8EB; box-shadow: 1px 1px 3px 2px #FAA8EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAA8EB; -webkit-box-shadow: 1px 1px 3px 2px #FAA8EB; box-shadow:1px 1px 3px 2px #FAA8EB;">
Div content here</div>
This text has color #FAA8EB on black background.
This text has color #FAA8EB on white background.
This text has black color on #FAA8EB background.
This text has white color on #FAA8EB background.