HEX: #F384BD
RGB: (243,132,189)
#F384BD contains mainly red and blue colors. Web safe color of #F384BD is #FF99CC (or #F9C).
#F384BD color RGB value is (243,132,189).
RGB: (243,132,189) (95%,52%,74%)
R 243 of 255 = 95%
G 132 of 255 = 52%
B 189 of 255 = 74%
R + G + B ~ 74%. #F384BD is quite light color.
R + G + B =
243 + 132 + 189 = 564 (100%)
R 243 of 564 ~ 43.09%
G 132 of 564 ~ 23.4%
B 189 of 564 ~ 33.51%
#F384BD color CMYK value is (0,46,22,5).
CMYK: (0,46,22,5) C0M46Y22K5 (0%,46%,22%,5%) (0.00/0.46/0.22/0.05)
F3 | 84 | BD | |
---|---|---|---|
RGB | 243 | 132 | 189 |
HSL | 329° | 82.22% | 73.53% |
HSB/HSV | 329° | 45.68% | 95.29% |
CMYK | 0.00% | 45.68% | 22.22% |
4.71% |
HEX | F3 | 84 | BD |
Decimal | 243 | 132 | 189 |
Binary | 11110011 | 10000100 | 10111101 |
Octal | 363 | 204 | 275 |
Examples of css and html codes for elements with #F384BD color. Also use rgb(243,132,189) instead hex code.
.myTextColor { color: #F384BD; }
<p style="color:#F384BD">This sample text font color is #F384BD.</p>
This text font color is #F384BD.
.myBgColor { background-color: #F384BD; }
<div style="background-color:#F384BD">Inner text</div>
This div background color is #F384BD.
.myBorderColor { border: 1px solid #F384BD; }
<div style="border:3px solid #F384BD">Div</div>
This div border color is #F384BD.
.myOpacity80 { color: #F384BD; opacity: 0.8; }
<p style="color:#F384BD;opacity:0.8;">80%</p>
Text with #F384BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F384BD;}
<p style="text-shadow: 3px 3px 1px #F384BD">Text here.</p>
This text has shadow with #F384BD color.
.textShadow {text-shadow: 3px 3px 1px #F384BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F384BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #F384BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F384BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F384BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #F384BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F384BD; -webkit-box-shadow: 1px 1px 3px 2px #F384BD; box-shadow: 1px 1px 3px 2px #F384BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F384BD; -webkit-box-shadow: 1px 1px 3px 2px #F384BD; box-shadow:1px 1px 3px 2px #F384BD;">
Div content here</div>
This text has color #F384BD on black background.
This text has color #F384BD on white background.
This text has black color on #F384BD background.
This text has white color on #F384BD background.