HEX: #C33F7D
RGB: (195,63,125)
#C33F7D contains mainly red color. Web safe color of #C33F7D is #CC3366 (or #C36).
#C33F7D color RGB value is (195,63,125).
RGB: (195,63,125) (76%,25%,49%)
R 195 of 255 = 76%
G 63 of 255 = 25%
B 125 of 255 = 49%
R + G + B ~ 50%. #C33F7D is middle color (not dark and not light).
R + G + B =
195 + 63 + 125 = 383 (100%)
R 195 of 383 ~ 50.91%
G 63 of 383 ~ 16.45%
B 125 of 383 ~ 32.64%
#C33F7D color CMYK value is (0,68,36,24).
CMYK: (0,68,36,24) C0M68Y36K24 (0%,68%,36%,24%) (0.00/0.68/0.36/0.24)
C3 | 3F | 7D | |
---|---|---|---|
RGB | 195 | 63 | 125 |
HSL | 332° | 52.38% | 50.59% |
HSB/HSV | 332° | 67.69% | 76.47% |
CMYK | 0.00% | 67.69% | 35.90% |
23.53% |
HEX | C3 | 3F | 7D |
Decimal | 195 | 63 | 125 |
Binary | 11000011 | 111111 | 1111101 |
Octal | 303 | 77 | 175 |
Examples of css and html codes for elements with #C33F7D color. Also use rgb(195,63,125) instead hex code.
.myTextColor { color: #C33F7D; }
<p style="color:#C33F7D">This sample text font color is #C33F7D.</p>
This text font color is #C33F7D.
.myBgColor { background-color: #C33F7D; }
<div style="background-color:#C33F7D">Inner text</div>
This div background color is #C33F7D.
.myBorderColor { border: 1px solid #C33F7D; }
<div style="border:3px solid #C33F7D">Div</div>
This div border color is #C33F7D.
.myOpacity80 { color: #C33F7D; opacity: 0.8; }
<p style="color:#C33F7D;opacity:0.8;">80%</p>
Text with #C33F7D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C33F7D;}
<p style="text-shadow: 3px 3px 1px #C33F7D">Text here.</p>
This text has shadow with #C33F7D color.
.textShadow {text-shadow: 3px 3px 1px #C33F7D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C33F7D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C33F7D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C33F7D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C33F7D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C33F7D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C33F7D; -webkit-box-shadow: 1px 1px 3px 2px #C33F7D; box-shadow: 1px 1px 3px 2px #C33F7D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C33F7D; -webkit-box-shadow: 1px 1px 3px 2px #C33F7D; box-shadow:1px 1px 3px 2px #C33F7D;">
Div content here</div>
This text has color #C33F7D on black background.
This text has color #C33F7D on white background.
This text has black color on #C33F7D background.
This text has white color on #C33F7D background.