HEX: #C15D2A
RGB: (193,93,42)
#C15D2A contains mainly red color. Web safe color of #C15D2A is #CC6633 (or #C63).
#C15D2A color RGB value is (193,93,42).
RGB: (193,93,42) (76%,36%,16%)
R 193 of 255 = 76%
G 93 of 255 = 36%
B 42 of 255 = 16%
R + G + B ~ 43%. #C15D2A is middle color (not dark and not light).
R + G + B =
193 + 93 + 42 = 328 (100%)
R 193 of 328 ~ 58.84%
G 93 of 328 ~ 28.35%
B 42 of 328 ~ 12.8%
#C15D2A color CMYK value is (0,52,78,24).
CMYK: (0,52,78,24) C0M52Y78K24 (0%,52%,78%,24%) (0.00/0.52/0.78/0.24)
C1 | 5D | 2A | |
---|---|---|---|
RGB | 193 | 93 | 42 |
HSL | 20° | 64.26% | 46.08% |
HSB/HSV | 20° | 78.24% | 75.69% |
CMYK | 0.00% | 51.81% | 78.24% |
24.31% |
HEX | C1 | 5D | 2A |
Decimal | 193 | 93 | 42 |
Binary | 11000001 | 1011101 | 101010 |
Octal | 301 | 135 | 52 |
Examples of css and html codes for elements with #C15D2A color. Also use rgb(193,93,42) instead hex code.
.myTextColor { color: #C15D2A; }
<p style="color:#C15D2A">This sample text font color is #C15D2A.</p>
This text font color is #C15D2A.
.myBgColor { background-color: #C15D2A; }
<div style="background-color:#C15D2A">Inner text</div>
This div background color is #C15D2A.
.myBorderColor { border: 1px solid #C15D2A; }
<div style="border:3px solid #C15D2A">Div</div>
This div border color is #C15D2A.
.myOpacity80 { color: #C15D2A; opacity: 0.8; }
<p style="color:#C15D2A;opacity:0.8;">80%</p>
Text with #C15D2A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C15D2A;}
<p style="text-shadow: 3px 3px 1px #C15D2A">Text here.</p>
This text has shadow with #C15D2A color.
.textShadow {text-shadow: 3px 3px 1px #C15D2A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C15D2A, 5px 5px 20px red">Text here.</p>
This text has shadow with #C15D2A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C15D2A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C15D2A, Direction=45, Strength=4)">Text</p>
This text has shadow with #C15D2A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C15D2A; -webkit-box-shadow: 1px 1px 3px 2px #C15D2A; box-shadow: 1px 1px 3px 2px #C15D2A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C15D2A; -webkit-box-shadow: 1px 1px 3px 2px #C15D2A; box-shadow:1px 1px 3px 2px #C15D2A;">
Div content here</div>
This text has color #C15D2A on black background.
This text has color #C15D2A on white background.
This text has black color on #C15D2A background.
This text has white color on #C15D2A background.