HEX: #480C23
RGB: (72,12,35)
#480C23 contains mainly red and blue colors. Web safe color of #480C23 is #330033 (or #303).
#480C23 color RGB value is (72,12,35).
RGB: (72,12,35) (28%,5%,14%)
R 72 of 255 = 28%
G 12 of 255 = 5%
B 35 of 255 = 14%
R + G + B ~ 16%. #480C23 is dark color.
R + G + B =
72 + 12 + 35 = 119 (100%)
R 72 of 119 ~ 60.5%
G 12 of 119 ~ 10.08%
B 35 of 119 ~ 29.41%
#480C23 color CMYK value is (0,83,51,72).
CMYK: (0,83,51,72) C0M83Y51K72 (0%,83%,51%,72%) (0.00/0.83/0.51/0.72)
48 | 0C | 23 | |
---|---|---|---|
RGB | 72 | 12 | 35 |
HSL | 337° | 71.43% | 16.47% |
HSB/HSV | 337° | 83.33% | 28.24% |
CMYK | 0.00% | 83.33% | 51.39% |
71.76% |
HEX | 48 | 0C | 23 |
Decimal | 72 | 12 | 35 |
Binary | 1001000 | 1100 | 100011 |
Octal | 110 | 14 | 43 |
Examples of css and html codes for elements with #480C23 color. Also use rgb(72,12,35) instead hex code.
.myTextColor { color: #480C23; }
<p style="color:#480C23">This sample text font color is #480C23.</p>
This text font color is #480C23.
.myBgColor { background-color: #480C23; }
<div style="background-color:#480C23">Inner text</div>
This div background color is #480C23.
.myBorderColor { border: 1px solid #480C23; }
<div style="border:3px solid #480C23">Div</div>
This div border color is #480C23.
.myOpacity80 { color: #480C23; opacity: 0.8; }
<p style="color:#480C23;opacity:0.8;">80%</p>
Text with #480C23 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #480C23;}
<p style="text-shadow: 3px 3px 1px #480C23">Text here.</p>
This text has shadow with #480C23 color.
.textShadow {text-shadow: 3px 3px 1px #480C23, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #480C23, 5px 5px 20px red">Text here.</p>
This text has shadow with #480C23 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#480C23, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#480C23, Direction=45, Strength=4)">Text</p>
This text has shadow with #480C23 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #480C23; -webkit-box-shadow: 1px 1px 3px 2px #480C23; box-shadow: 1px 1px 3px 2px #480C23; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #480C23; -webkit-box-shadow: 1px 1px 3px 2px #480C23; box-shadow:1px 1px 3px 2px #480C23;">
Div content here</div>
This text has color #480C23 on black background.
This text has color #480C23 on white background.
This text has black color on #480C23 background.
This text has white color on #480C23 background.