HEX: #15250A
RGB: (21,37,10)
#15250A contains red, green and blue colors in about the same proportion. Web safe color of #15250A is #003300 (or #030).
#15250A color RGB value is (21,37,10).
RGB: (21,37,10) (8%,15%,4%)
R 21 of 255 = 8%
G 37 of 255 = 15%
B 10 of 255 = 4%
R + G + B ~ 9%. #15250A is dark color.
R + G + B =
21 + 37 + 10 = 68 (100%)
R 21 of 68 ~ 30.88%
G 37 of 68 ~ 54.41%
B 10 of 68 ~ 14.71%
#15250A color CMYK value is (43,0,73,85).
CMYK: (43,0,73,85) C43M0Y73K85 (43%,0%,73%,85%) (0.43/0.00/0.73/0.85)
15 | 25 | 0A | |
---|---|---|---|
RGB | 21 | 37 | 10 |
HSL | 96° | 57.45% | 9.22% |
HSB/HSV | 96° | 72.97% | 14.51% |
CMYK | 43.24% | 0.00% | 72.97% |
85.49% |
HEX | 15 | 25 | 0A |
Decimal | 21 | 37 | 10 |
Binary | 10101 | 100101 | 1010 |
Octal | 25 | 45 | 12 |
Examples of css and html codes for elements with #15250A color. Also use rgb(21,37,10) instead hex code.
.myTextColor { color: #15250A; }
<p style="color:#15250A">This sample text font color is #15250A.</p>
This text font color is #15250A.
.myBgColor { background-color: #15250A; }
<div style="background-color:#15250A">Inner text</div>
This div background color is #15250A.
.myBorderColor { border: 1px solid #15250A; }
<div style="border:3px solid #15250A">Div</div>
This div border color is #15250A.
.myOpacity80 { color: #15250A; opacity: 0.8; }
<p style="color:#15250A;opacity:0.8;">80%</p>
Text with #15250A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #15250A;}
<p style="text-shadow: 3px 3px 1px #15250A">Text here.</p>
This text has shadow with #15250A color.
.textShadow {text-shadow: 3px 3px 1px #15250A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #15250A, 5px 5px 20px red">Text here.</p>
This text has shadow with #15250A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#15250A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#15250A, Direction=45, Strength=4)">Text</p>
This text has shadow with #15250A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #15250A; -webkit-box-shadow: 1px 1px 3px 2px #15250A; box-shadow: 1px 1px 3px 2px #15250A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #15250A; -webkit-box-shadow: 1px 1px 3px 2px #15250A; box-shadow:1px 1px 3px 2px #15250A;">
Div content here</div>
This text has color #15250A on black background.
This text has color #15250A on white background.
This text has black color on #15250A background.
This text has white color on #15250A background.