HEX: #25555D
RGB: (37,85,93)
#25555D contains red, green and blue colors in about the same proportion. Web safe color of #25555D is #336666 (or #366).
#25555D color RGB value is (37,85,93).
RGB: (37,85,93) (15%,33%,36%)
R 37 of 255 = 15%
G 85 of 255 = 33%
B 93 of 255 = 36%
R + G + B ~ 28%. #25555D is quite dark color.
R + G + B =
37 + 85 + 93 = 215 (100%)
R 37 of 215 ~ 17.21%
G 85 of 215 ~ 39.53%
B 93 of 215 ~ 43.26%
#25555D color CMYK value is (60,9,0,64).
CMYK: (60,9,0,64) C60M9Y0K64 (60%,9%,0%,64%) (0.60/0.09/0.00/0.64)
25 | 55 | 5D | |
---|---|---|---|
RGB | 37 | 85 | 93 |
HSL | 189° | 43.08% | 25.49% |
HSB/HSV | 189° | 60.22% | 36.47% |
CMYK | 60.22% | 8.60% | 0.00% |
63.53% |
HEX | 25 | 55 | 5D |
Decimal | 37 | 85 | 93 |
Binary | 100101 | 1010101 | 1011101 |
Octal | 45 | 125 | 135 |
Examples of css and html codes for elements with #25555D color. Also use rgb(37,85,93) instead hex code.
.myTextColor { color: #25555D; }
<p style="color:#25555D">This sample text font color is #25555D.</p>
This text font color is #25555D.
.myBgColor { background-color: #25555D; }
<div style="background-color:#25555D">Inner text</div>
This div background color is #25555D.
.myBorderColor { border: 1px solid #25555D; }
<div style="border:3px solid #25555D">Div</div>
This div border color is #25555D.
.myOpacity80 { color: #25555D; opacity: 0.8; }
<p style="color:#25555D;opacity:0.8;">80%</p>
Text with #25555D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #25555D;}
<p style="text-shadow: 3px 3px 1px #25555D">Text here.</p>
This text has shadow with #25555D color.
.textShadow {text-shadow: 3px 3px 1px #25555D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #25555D, 5px 5px 20px red">Text here.</p>
This text has shadow with #25555D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#25555D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#25555D, Direction=45, Strength=4)">Text</p>
This text has shadow with #25555D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #25555D; -webkit-box-shadow: 1px 1px 3px 2px #25555D; box-shadow: 1px 1px 3px 2px #25555D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #25555D; -webkit-box-shadow: 1px 1px 3px 2px #25555D; box-shadow:1px 1px 3px 2px #25555D;">
Div content here</div>
This text has color #25555D on black background.
This text has color #25555D on white background.
This text has black color on #25555D background.
This text has white color on #25555D background.