HEX: #FF33CC
RGB: (255,51,204)
#FF33CC contains mainly red and blue colors. #FF33CC color is web safe color. It maybe written shortly as #F3C.
#FF33CC color RGB value is (255,51,204).
RGB: (255,51,204) (100%,20%,80%)
R 255 of 255 = 100%
G 51 of 255 = 20%
B 204 of 255 = 80%
R + G + B ~ 67%. #FF33CC is quite light color.
R + G + B =
255 + 51 + 204 = 510 (100%)
R 255 of 510 ~ 50%
G 51 of 510 ~ 10%
B 204 of 510 ~ 40%
#FF33CC color CMYK value is (0,80,20,0).
CMYK: (0,80,20,0) C0M80Y20K0 (0%,80%,20%,0%) (0.00/0.80/0.20/0.00)
FF | 33 | CC | |
---|---|---|---|
RGB | 255 | 51 | 204 |
HSL | 315° | 100.00% | 60.00% |
HSB/HSV | 315° | 80.00% | 100.00% |
CMYK | 0.00% | 80.00% | 20.00% |
0.00% |
HEX | FF | 33 | CC |
Decimal | 255 | 51 | 204 |
Binary | 11111111 | 110011 | 11001100 |
Octal | 377 | 63 | 314 |
Examples of css and html codes for elements with #FF33CC color. Also use rgb(255,51,204) instead hex code.
.myTextColor { color: #FF33CC; }
<p style="color:#FF33CC">This sample text font color is #FF33CC.</p>
This text font color is #FF33CC.
.myBgColor { background-color: #FF33CC; }
<div style="background-color:#FF33CC">Inner text</div>
This div background color is #FF33CC.
.myBorderColor { border: 1px solid #FF33CC; }
<div style="border:3px solid #FF33CC">Div</div>
This div border color is #FF33CC.
.myOpacity80 { color: #FF33CC; opacity: 0.8; }
<p style="color:#FF33CC;opacity:0.8;">80%</p>
Text with #FF33CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FF33CC;}
<p style="text-shadow: 3px 3px 1px #FF33CC">Text here.</p>
This text has shadow with #FF33CC color.
.textShadow {text-shadow: 3px 3px 1px #FF33CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FF33CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #FF33CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FF33CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FF33CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FF33CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FF33CC; -webkit-box-shadow: 1px 1px 3px 2px #FF33CC; box-shadow: 1px 1px 3px 2px #FF33CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FF33CC; -webkit-box-shadow: 1px 1px 3px 2px #FF33CC; box-shadow:1px 1px 3px 2px #FF33CC;">
Div content here</div>
This text has color #FF33CC on black background.
This text has color #FF33CC on white background.
This text has black color on #FF33CC background.
This text has white color on #FF33CC background.