HEX: #00250C
RGB: (0,37,12)
#00250C contains only green and blue colors. Web safe color of #00250C is #003300 (or #030).
#00250C color RGB value is (0,37,12).
RGB: (0,37,12) (0%,15%,5%)
R 0 of 255 = 0%
G 37 of 255 = 15%
B 12 of 255 = 5%
R + G + B ~ 7%. #00250C is dark color.
R + G + B =
0 + 37 + 12 = 49 (100%)
R 0 of 49 ~ 0%
G 37 of 49 ~ 75.51%
B 12 of 49 ~ 24.49%
#00250C color CMYK value is (100,0,68,85).
CMYK: (100,0,68,85) C100M0Y68K85 (100%,0%,68%,85%) (1.00/0.00/0.68/0.85)
00 | 25 | 0C | |
---|---|---|---|
RGB | 0 | 37 | 12 |
HSL | 139° | 100.00% | 7.25% |
HSB/HSV | 139° | 100.00% | 14.51% |
CMYK | 100.00% | 0.00% | 67.57% |
85.49% |
HEX | 00 | 25 | 0C |
Decimal | 0 | 37 | 12 |
Binary | 0 | 100101 | 1100 |
Octal | 0 | 45 | 14 |
Examples of css and html codes for elements with #00250C color. Also use rgb(0,37,12) instead hex code.
.myTextColor { color: #00250C; }
<p style="color:#00250C">This sample text font color is #00250C.</p>
This text font color is #00250C.
.myBgColor { background-color: #00250C; }
<div style="background-color:#00250C">Inner text</div>
This div background color is #00250C.
.myBorderColor { border: 1px solid #00250C; }
<div style="border:3px solid #00250C">Div</div>
This div border color is #00250C.
.myOpacity80 { color: #00250C; opacity: 0.8; }
<p style="color:#00250C;opacity:0.8;">80%</p>
Text with #00250C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #00250C;}
<p style="text-shadow: 3px 3px 1px #00250C">Text here.</p>
This text has shadow with #00250C color.
.textShadow {text-shadow: 3px 3px 1px #00250C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #00250C, 5px 5px 20px red">Text here.</p>
This text has shadow with #00250C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#00250C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#00250C, Direction=45, Strength=4)">Text</p>
This text has shadow with #00250C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #00250C; -webkit-box-shadow: 1px 1px 3px 2px #00250C; box-shadow: 1px 1px 3px 2px #00250C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #00250C; -webkit-box-shadow: 1px 1px 3px 2px #00250C; box-shadow:1px 1px 3px 2px #00250C;">
Div content here</div>
This text has color #00250C on black background.
This text has color #00250C on white background.
This text has black color on #00250C background.
This text has white color on #00250C background.