HEX: #25393D
RGB: (37,57,61)
#25393D contains red, green and blue colors in about the same proportion. Web safe color of #25393D is #333333 (or #333).
#25393D color RGB value is (37,57,61).
RGB: (37,57,61) (15%,22%,24%)
R 37 of 255 = 15%
G 57 of 255 = 22%
B 61 of 255 = 24%
R + G + B ~ 20%. #25393D is dark color.
R + G + B =
37 + 57 + 61 = 155 (100%)
R 37 of 155 ~ 23.87%
G 57 of 155 ~ 36.77%
B 61 of 155 ~ 39.35%
#25393D color CMYK value is (39,7,0,76).
CMYK: (39,7,0,76) C39M7Y0K76 (39%,7%,0%,76%) (0.39/0.07/0.00/0.76)
25 | 39 | 3D | |
---|---|---|---|
RGB | 37 | 57 | 61 |
HSL | 190° | 24.49% | 19.22% |
HSB/HSV | 190° | 39.34% | 23.92% |
CMYK | 39.34% | 6.56% | 0.00% |
76.08% |
HEX | 25 | 39 | 3D |
Decimal | 37 | 57 | 61 |
Binary | 100101 | 111001 | 111101 |
Octal | 45 | 71 | 75 |
Examples of css and html codes for elements with #25393D color. Also use rgb(37,57,61) instead hex code.
.myTextColor { color: #25393D; }
<p style="color:#25393D">This sample text font color is #25393D.</p>
This text font color is #25393D.
.myBgColor { background-color: #25393D; }
<div style="background-color:#25393D">Inner text</div>
This div background color is #25393D.
.myBorderColor { border: 1px solid #25393D; }
<div style="border:3px solid #25393D">Div</div>
This div border color is #25393D.
.myOpacity80 { color: #25393D; opacity: 0.8; }
<p style="color:#25393D;opacity:0.8;">80%</p>
Text with #25393D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #25393D;}
<p style="text-shadow: 3px 3px 1px #25393D">Text here.</p>
This text has shadow with #25393D color.
.textShadow {text-shadow: 3px 3px 1px #25393D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #25393D, 5px 5px 20px red">Text here.</p>
This text has shadow with #25393D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#25393D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#25393D, Direction=45, Strength=4)">Text</p>
This text has shadow with #25393D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #25393D; -webkit-box-shadow: 1px 1px 3px 2px #25393D; box-shadow: 1px 1px 3px 2px #25393D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #25393D; -webkit-box-shadow: 1px 1px 3px 2px #25393D; box-shadow:1px 1px 3px 2px #25393D;">
Div content here</div>
This text has color #25393D on black background.
This text has color #25393D on white background.
This text has black color on #25393D background.
This text has white color on #25393D background.