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