HEX: #FFACEE
RGB: (255,172,238)
#FFACEE contains mainly red and blue colors. Web safe color of #FFACEE is #FF99FF (or #F9F).
#FFACEE color RGB value is (255,172,238).
RGB: (255,172,238) (100%,67%,93%)
R 255 of 255 = 100%
G 172 of 255 = 67%
B 238 of 255 = 93%
R + G + B ~ 87%. #FFACEE is light color.
R + G + B =
255 + 172 + 238 = 665 (100%)
R 255 of 665 ~ 38.35%
G 172 of 665 ~ 25.86%
B 238 of 665 ~ 35.79%
#FFACEE color CMYK value is (0,33,7,0).
CMYK: (0,33,7,0) C0M33Y7K0 (0%,33%,7%,0%) (0.00/0.33/0.07/0.00)
FF | AC | EE | |
---|---|---|---|
RGB | 255 | 172 | 238 |
HSL | 312° | 100.00% | 83.73% |
HSB/HSV | 312° | 32.55% | 100.00% |
CMYK | 0.00% | 32.55% | 6.67% |
0.00% |
HEX | FF | AC | EE |
Decimal | 255 | 172 | 238 |
Binary | 11111111 | 10101100 | 11101110 |
Octal | 377 | 254 | 356 |
Examples of css and html codes for elements with #FFACEE color. Also use rgb(255,172,238) instead hex code.
.myTextColor { color: #FFACEE; }
<p style="color:#FFACEE">This sample text font color is #FFACEE.</p>
This text font color is #FFACEE.
.myBgColor { background-color: #FFACEE; }
<div style="background-color:#FFACEE">Inner text</div>
This div background color is #FFACEE.
.myBorderColor { border: 1px solid #FFACEE; }
<div style="border:3px solid #FFACEE">Div</div>
This div border color is #FFACEE.
.myOpacity80 { color: #FFACEE; opacity: 0.8; }
<p style="color:#FFACEE;opacity:0.8;">80%</p>
Text with #FFACEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFACEE;}
<p style="text-shadow: 3px 3px 1px #FFACEE">Text here.</p>
This text has shadow with #FFACEE color.
.textShadow {text-shadow: 3px 3px 1px #FFACEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFACEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFACEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFACEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFACEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFACEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFACEE; -webkit-box-shadow: 1px 1px 3px 2px #FFACEE; box-shadow: 1px 1px 3px 2px #FFACEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFACEE; -webkit-box-shadow: 1px 1px 3px 2px #FFACEE; box-shadow:1px 1px 3px 2px #FFACEE;">
Div content here</div>
This text has color #FFACEE on black background.
This text has color #FFACEE on white background.
This text has black color on #FFACEE background.
This text has white color on #FFACEE background.