HEX: #C3585D
RGB: (195,88,93)
#C3585D contains mainly red color. Web safe color of #C3585D is #CC6666 (or #C66).
#C3585D color RGB value is (195,88,93).
RGB: (195,88,93) (76%,35%,36%)
R 195 of 255 = 76%
G 88 of 255 = 35%
B 93 of 255 = 36%
R + G + B ~ 49%. #C3585D is middle color (not dark and not light).
R + G + B =
195 + 88 + 93 = 376 (100%)
R 195 of 376 ~ 51.86%
G 88 of 376 ~ 23.4%
B 93 of 376 ~ 24.73%
#C3585D color CMYK value is (0,55,52,24).
CMYK: (0,55,52,24) C0M55Y52K24 (0%,55%,52%,24%) (0.00/0.55/0.52/0.24)
C3 | 58 | 5D | |
---|---|---|---|
RGB | 195 | 88 | 93 |
HSL | 357° | 47.14% | 55.49% |
HSB/HSV | 357° | 54.87% | 76.47% |
CMYK | 0.00% | 54.87% | 52.31% |
23.53% |
HEX | C3 | 58 | 5D |
Decimal | 195 | 88 | 93 |
Binary | 11000011 | 1011000 | 1011101 |
Octal | 303 | 130 | 135 |
Examples of css and html codes for elements with #C3585D color. Also use rgb(195,88,93) instead hex code.
.myTextColor { color: #C3585D; }
<p style="color:#C3585D">This sample text font color is #C3585D.</p>
This text font color is #C3585D.
.myBgColor { background-color: #C3585D; }
<div style="background-color:#C3585D">Inner text</div>
This div background color is #C3585D.
.myBorderColor { border: 1px solid #C3585D; }
<div style="border:3px solid #C3585D">Div</div>
This div border color is #C3585D.
.myOpacity80 { color: #C3585D; opacity: 0.8; }
<p style="color:#C3585D;opacity:0.8;">80%</p>
Text with #C3585D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C3585D;}
<p style="text-shadow: 3px 3px 1px #C3585D">Text here.</p>
This text has shadow with #C3585D color.
.textShadow {text-shadow: 3px 3px 1px #C3585D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C3585D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C3585D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C3585D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C3585D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C3585D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C3585D; -webkit-box-shadow: 1px 1px 3px 2px #C3585D; box-shadow: 1px 1px 3px 2px #C3585D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C3585D; -webkit-box-shadow: 1px 1px 3px 2px #C3585D; box-shadow:1px 1px 3px 2px #C3585D;">
Div content here</div>
This text has color #C3585D on black background.
This text has color #C3585D on white background.
This text has black color on #C3585D background.
This text has white color on #C3585D background.