HEX: #25472A
RGB: (37,71,42)
#25472A contains red, green and blue colors in about the same proportion. Web safe color of #25472A is #333333 (or #333).
#25472A color RGB value is (37,71,42).
RGB: (37,71,42) (15%,28%,16%)
R 37 of 255 = 15%
G 71 of 255 = 28%
B 42 of 255 = 16%
R + G + B ~ 20%. #25472A is dark color.
R + G + B =
37 + 71 + 42 = 150 (100%)
R 37 of 150 ~ 24.67%
G 71 of 150 ~ 47.33%
B 42 of 150 ~ 28%
#25472A color CMYK value is (48,0,41,72).
CMYK: (48,0,41,72) C48M0Y41K72 (48%,0%,41%,72%) (0.48/0.00/0.41/0.72)
25 | 47 | 2A | |
---|---|---|---|
RGB | 37 | 71 | 42 |
HSL | 129° | 31.48% | 21.18% |
HSB/HSV | 129° | 47.89% | 27.84% |
CMYK | 47.89% | 0.00% | 40.85% |
72.16% |
HEX | 25 | 47 | 2A |
Decimal | 37 | 71 | 42 |
Binary | 100101 | 1000111 | 101010 |
Octal | 45 | 107 | 52 |
Examples of css and html codes for elements with #25472A color. Also use rgb(37,71,42) instead hex code.
.myTextColor { color: #25472A; }
<p style="color:#25472A">This sample text font color is #25472A.</p>
This text font color is #25472A.
.myBgColor { background-color: #25472A; }
<div style="background-color:#25472A">Inner text</div>
This div background color is #25472A.
.myBorderColor { border: 1px solid #25472A; }
<div style="border:3px solid #25472A">Div</div>
This div border color is #25472A.
.myOpacity80 { color: #25472A; opacity: 0.8; }
<p style="color:#25472A;opacity:0.8;">80%</p>
Text with #25472A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #25472A;}
<p style="text-shadow: 3px 3px 1px #25472A">Text here.</p>
This text has shadow with #25472A color.
.textShadow {text-shadow: 3px 3px 1px #25472A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #25472A, 5px 5px 20px red">Text here.</p>
This text has shadow with #25472A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#25472A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#25472A, Direction=45, Strength=4)">Text</p>
This text has shadow with #25472A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #25472A; -webkit-box-shadow: 1px 1px 3px 2px #25472A; box-shadow: 1px 1px 3px 2px #25472A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #25472A; -webkit-box-shadow: 1px 1px 3px 2px #25472A; box-shadow:1px 1px 3px 2px #25472A;">
Div content here</div>
This text has color #25472A on black background.
This text has color #25472A on white background.
This text has black color on #25472A background.
This text has white color on #25472A background.