HEX: #C83B63
RGB: (200,59,99)
#C83B63 contains mainly red color. Web safe color of #C83B63 is #CC3366 (or #C36).
#C83B63 color RGB value is (200,59,99).
RGB: (200,59,99) (78%,23%,39%)
R 200 of 255 = 78%
G 59 of 255 = 23%
B 99 of 255 = 39%
R + G + B ~ 47%. #C83B63 is middle color (not dark and not light).
R + G + B =
200 + 59 + 99 = 358 (100%)
R 200 of 358 ~ 55.87%
G 59 of 358 ~ 16.48%
B 99 of 358 ~ 27.65%
#C83B63 color CMYK value is (0,71,51,22).
CMYK: (0,71,51,22) C0M71Y51K22 (0%,71%,51%,22%) (0.00/0.71/0.51/0.22)
C8 | 3B | 63 | |
---|---|---|---|
RGB | 200 | 59 | 99 |
HSL | 343° | 56.18% | 50.78% |
HSB/HSV | 343° | 70.50% | 78.43% |
CMYK | 0.00% | 70.50% | 50.50% |
21.57% |
HEX | C8 | 3B | 63 |
Decimal | 200 | 59 | 99 |
Binary | 11001000 | 111011 | 1100011 |
Octal | 310 | 73 | 143 |
Examples of css and html codes for elements with #C83B63 color. Also use rgb(200,59,99) instead hex code.
.myTextColor { color: #C83B63; }
<p style="color:#C83B63">This sample text font color is #C83B63.</p>
This text font color is #C83B63.
.myBgColor { background-color: #C83B63; }
<div style="background-color:#C83B63">Inner text</div>
This div background color is #C83B63.
.myBorderColor { border: 1px solid #C83B63; }
<div style="border:3px solid #C83B63">Div</div>
This div border color is #C83B63.
.myOpacity80 { color: #C83B63; opacity: 0.8; }
<p style="color:#C83B63;opacity:0.8;">80%</p>
Text with #C83B63 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C83B63;}
<p style="text-shadow: 3px 3px 1px #C83B63">Text here.</p>
This text has shadow with #C83B63 color.
.textShadow {text-shadow: 3px 3px 1px #C83B63, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C83B63, 5px 5px 20px red">Text here.</p>
This text has shadow with #C83B63 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C83B63, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C83B63, Direction=45, Strength=4)">Text</p>
This text has shadow with #C83B63 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C83B63; -webkit-box-shadow: 1px 1px 3px 2px #C83B63; box-shadow: 1px 1px 3px 2px #C83B63; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C83B63; -webkit-box-shadow: 1px 1px 3px 2px #C83B63; box-shadow:1px 1px 3px 2px #C83B63;">
Div content here</div>
This text has color #C83B63 on black background.
This text has color #C83B63 on white background.
This text has black color on #C83B63 background.
This text has white color on #C83B63 background.