HEX: #C6363E
RGB: (198,54,62)
#C6363E contains mainly red color. Web safe color of #C6363E is #CC3333 (or #C33).
#C6363E color RGB value is (198,54,62).
RGB: (198,54,62) (78%,21%,24%)
R 198 of 255 = 78%
G 54 of 255 = 21%
B 62 of 255 = 24%
R + G + B ~ 41%. #C6363E is middle color (not dark and not light).
R + G + B =
198 + 54 + 62 = 314 (100%)
R 198 of 314 ~ 63.06%
G 54 of 314 ~ 17.2%
B 62 of 314 ~ 19.75%
#C6363E color CMYK value is (0,73,69,22).
CMYK: (0,73,69,22) C0M73Y69K22 (0%,73%,69%,22%) (0.00/0.73/0.69/0.22)
C6 | 36 | 3E | |
---|---|---|---|
RGB | 198 | 54 | 62 |
HSL | 357° | 57.14% | 49.41% |
HSB/HSV | 357° | 72.73% | 77.65% |
CMYK | 0.00% | 72.73% | 68.69% |
22.35% |
HEX | C6 | 36 | 3E |
Decimal | 198 | 54 | 62 |
Binary | 11000110 | 110110 | 111110 |
Octal | 306 | 66 | 76 |
Examples of css and html codes for elements with #C6363E color. Also use rgb(198,54,62) instead hex code.
.myTextColor { color: #C6363E; }
<p style="color:#C6363E">This sample text font color is #C6363E.</p>
This text font color is #C6363E.
.myBgColor { background-color: #C6363E; }
<div style="background-color:#C6363E">Inner text</div>
This div background color is #C6363E.
.myBorderColor { border: 1px solid #C6363E; }
<div style="border:3px solid #C6363E">Div</div>
This div border color is #C6363E.
.myOpacity80 { color: #C6363E; opacity: 0.8; }
<p style="color:#C6363E;opacity:0.8;">80%</p>
Text with #C6363E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6363E;}
<p style="text-shadow: 3px 3px 1px #C6363E">Text here.</p>
This text has shadow with #C6363E color.
.textShadow {text-shadow: 3px 3px 1px #C6363E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6363E, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6363E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6363E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6363E, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6363E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6363E; -webkit-box-shadow: 1px 1px 3px 2px #C6363E; box-shadow: 1px 1px 3px 2px #C6363E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6363E; -webkit-box-shadow: 1px 1px 3px 2px #C6363E; box-shadow:1px 1px 3px 2px #C6363E;">
Div content here</div>
This text has color #C6363E on black background.
This text has color #C6363E on white background.
This text has black color on #C6363E background.
This text has white color on #C6363E background.