HEX: #FF0099
RGB: (255,0,153)
#FF0099 contains mainly red color. #FF0099 color is web safe color. It maybe written shortly as #F09.
#FF0099 color RGB value is (255,0,153).
RGB: (255,0,153) (100%,0%,60%)
R 255 of 255 = 100%
G 0 of 255 = 0%
B 153 of 255 = 60%
R + G + B ~ 53%. #FF0099 is middle color (not dark and not light).
R + G + B =
255 + 0 + 153 = 408 (100%)
R 255 of 408 ~ 62.5%
G 0 of 408 ~ 0%
B 153 of 408 ~ 37.5%
#FF0099 rengi CMYK tonu (0,100,40,0).
CMYK: (0,100,40,0) C0M100Y40K0 (0%,100%,40%,0%) (0.00/1.00/0.40/0.00)
FF | 00 | 99 | |
---|---|---|---|
RGB | 255 | 0 | 153 |
HSL | 324° | 100.00% | 50.00% |
HSB/HSV | 324° | 100.00% | 100.00% |
CMYK | 0.00% | 100.00% | 40.00% |
0.00% |
HEX | FF | 00 | 99 |
Decimal | 255 | 0 | 153 |
Binary | 11111111 | 0 | 10011001 |
Octal | 377 | 0 | 231 |
Examples of css and html codes for elements with #FF0099 color. Also use rgb(255,0,153) instead hex code.
.myTextColor { color: #FF0099; }
<p style="color:#FF0099">This sample text font color is #FF0099.</p>
This text font color is #FF0099.
.myBgColor { background-color: #FF0099; }
<div style="background-color:#FF0099">Inner text</div>
This div background color is #FF0099.
.myBorderColor { border: 1px solid #FF0099; }
<div style="border:3px solid #FF0099">Div</div>
This div border color is #FF0099.
.myOpacity80 { color: #FF0099; opacity: 0.8; }
<p style="color:#FF0099;opacity:0.8;">80%</p>
Text with #FF0099 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FF0099;}
<p style="text-shadow: 3px 3px 1px #FF0099">Text here.</p>
This text has shadow with #FF0099 color.
.textShadow {text-shadow: 3px 3px 1px #FF0099, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FF0099, 5px 5px 20px red">Text here.</p>
This text has shadow with #FF0099 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FF0099, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FF0099, Direction=45, Strength=4)">Text</p>
This text has shadow with #FF0099 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FF0099; -webkit-box-shadow: 1px 1px 3px 2px #FF0099; box-shadow: 1px 1px 3px 2px #FF0099; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FF0099; -webkit-box-shadow: 1px 1px 3px 2px #FF0099; box-shadow:1px 1px 3px 2px #FF0099;">
Div content here</div>
This text has color #FF0099 on black background.
This text has color #FF0099 on white background.
This text has black color on #FF0099 background.
This text has white color on #FF0099 background.