HEX: #25353A
RGB: (37,53,58)
#25353A contains red, green and blue colors in about the same proportion. Web safe color of #25353A is #333333 (or #333).
#25353A color RGB value is (37,53,58).
RGB: (37,53,58) (15%,21%,23%)
R 37 of 255 = 15%
G 53 of 255 = 21%
B 58 of 255 = 23%
R + G + B ~ 20%. #25353A is dark color.
R + G + B =
37 + 53 + 58 = 148 (100%)
R 37 of 148 ~ 25%
G 53 of 148 ~ 35.81%
B 58 of 148 ~ 39.19%
#25353A color CMYK value is (36,9,0,77).
CMYK: (36,9,0,77) C36M9Y0K77 (36%,9%,0%,77%) (0.36/0.09/0.00/0.77)
25 | 35 | 3A | |
---|---|---|---|
RGB | 37 | 53 | 58 |
HSL | 194° | 22.11% | 18.63% |
HSB/HSV | 194° | 36.21% | 22.75% |
CMYK | 36.21% | 8.62% | 0.00% |
77.25% |
HEX | 25 | 35 | 3A |
Decimal | 37 | 53 | 58 |
Binary | 100101 | 110101 | 111010 |
Octal | 45 | 65 | 72 |
Examples of css and html codes for elements with #25353A color. Also use rgb(37,53,58) instead hex code.
.myTextColor { color: #25353A; }
<p style="color:#25353A">This sample text font color is #25353A.</p>
This text font color is #25353A.
.myBgColor { background-color: #25353A; }
<div style="background-color:#25353A">Inner text</div>
This div background color is #25353A.
.myBorderColor { border: 1px solid #25353A; }
<div style="border:3px solid #25353A">Div</div>
This div border color is #25353A.
.myOpacity80 { color: #25353A; opacity: 0.8; }
<p style="color:#25353A;opacity:0.8;">80%</p>
Text with #25353A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #25353A;}
<p style="text-shadow: 3px 3px 1px #25353A">Text here.</p>
This text has shadow with #25353A color.
.textShadow {text-shadow: 3px 3px 1px #25353A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #25353A, 5px 5px 20px red">Text here.</p>
This text has shadow with #25353A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#25353A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#25353A, Direction=45, Strength=4)">Text</p>
This text has shadow with #25353A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #25353A; -webkit-box-shadow: 1px 1px 3px 2px #25353A; box-shadow: 1px 1px 3px 2px #25353A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #25353A; -webkit-box-shadow: 1px 1px 3px 2px #25353A; box-shadow:1px 1px 3px 2px #25353A;">
Div content here</div>
This text has color #25353A on black background.
This text has color #25353A on white background.
This text has black color on #25353A background.
This text has white color on #25353A background.