HEX: #FDA5BB
RGB: (253,165,187)
#FDA5BB contains mainly red color. Web safe color of #FDA5BB is #FF99CC (or #F9C).
#FDA5BB color RGB value is (253,165,187).
RGB: (253,165,187) (99%,65%,73%)
R 253 of 255 = 99%
G 165 of 255 = 65%
B 187 of 255 = 73%
R + G + B ~ 79%. #FDA5BB is quite light color.
R + G + B =
253 + 165 + 187 = 605 (100%)
R 253 of 605 ~ 41.82%
G 165 of 605 ~ 27.27%
B 187 of 605 ~ 30.91%
#FDA5BB color CMYK value is (0,35,26,1).
CMYK: (0,35,26,1) C0M35Y26K1 (0%,35%,26%,1%) (0.00/0.35/0.26/0.01)
FD | A5 | BB | |
---|---|---|---|
RGB | 253 | 165 | 187 |
HSL | 345° | 95.65% | 81.96% |
HSB/HSV | 345° | 34.78% | 99.22% |
CMYK | 0.00% | 34.78% | 26.09% |
0.78% |
HEX | FD | A5 | BB |
Decimal | 253 | 165 | 187 |
Binary | 11111101 | 10100101 | 10111011 |
Octal | 375 | 245 | 273 |
Examples of css and html codes for elements with #FDA5BB color. Also use rgb(253,165,187) instead hex code.
.myTextColor { color: #FDA5BB; }
<p style="color:#FDA5BB">This sample text font color is #FDA5BB.</p>
This text font color is #FDA5BB.
.myBgColor { background-color: #FDA5BB; }
<div style="background-color:#FDA5BB">Inner text</div>
This div background color is #FDA5BB.
.myBorderColor { border: 1px solid #FDA5BB; }
<div style="border:3px solid #FDA5BB">Div</div>
This div border color is #FDA5BB.
.myOpacity80 { color: #FDA5BB; opacity: 0.8; }
<p style="color:#FDA5BB;opacity:0.8;">80%</p>
Text with #FDA5BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDA5BB;}
<p style="text-shadow: 3px 3px 1px #FDA5BB">Text here.</p>
This text has shadow with #FDA5BB color.
.textShadow {text-shadow: 3px 3px 1px #FDA5BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDA5BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDA5BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDA5BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDA5BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDA5BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDA5BB; -webkit-box-shadow: 1px 1px 3px 2px #FDA5BB; box-shadow: 1px 1px 3px 2px #FDA5BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDA5BB; -webkit-box-shadow: 1px 1px 3px 2px #FDA5BB; box-shadow:1px 1px 3px 2px #FDA5BB;">
Div content here</div>
This text has color #FDA5BB on black background.
This text has color #FDA5BB on white background.
This text has black color on #FDA5BB background.
This text has white color on #FDA5BB background.