#191970 color RGB value is (1, 145, 151).
#191970 hex color red value is 1, green value is 145, and blue value is 151.
Cylindrical-coordinate representations (HSL) of color #191970
hue: 182.4,
saturation: 0.99 and lightness: 0.3.
The process color (four-color CMYK) of #191970 color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #191970 is #ff9999. Color #191970 contains mainly RED.
Color spaces of #191970 | Value |
---|---|
RGB | 25, 25, 112 |
HSL | 0.67, 0.64, 0.27 |
HSV | 240°, 78°, 44° |
XYZ | 3.67, 2.07, 15.53 |
Base | Red | Green | Blue |
---|---|---|---|
Binary | 11001 | 11001 | 1110000 |
Octal | 31 | 31 | 160 |
Decimal | 25 | 25 | 112 |
Hex | 19 | 19 | 70 |
Shades of #191970
Tints of #191970
.mybgColor {background-color: #191970;} .myforeColor {color: #191970;} .myborderColor {border:3px solid #191970;}
<p style="color:#191970">Text here</p>
This sample text is styled with the font color #191970. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here,
<div style="background-color:#191970">Div content here</div>
<div style="border:3px solid #191970">Div here</div>
.textShadowRgb { text-shadow: 4px 4px 2px rgba(25, 25, 112, 0.8); } .textShadowHex { text-shadow: 4px 4px 2px #191970; } .divShadow { -moz-box-shadow: 1px 1px 3px #191970; -webkit-box-shadow: 1px 1px 3px #191970; box-shadow: 1px 1px 3px #191970; }
<p style="text-shadow: 4px 4px 2px rgba(25, 25, 112, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #191970;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<div style="-moz-box-shadow: 1px 1px 3px #191970;
-webkit-box-shadow: 1px 1px 3px #191970;
box-shadow: 1px 1px 3px #191970;">Div content here</div>