color details

Color Details
#263f3f Color Hex

#263f3f color RGB value is (2, 99, 243).
#263f3f hex color red value is 2, green value is 99, and blue value is 243.
Cylindrical-coordinate representations (HSL) of color #263f3f hue: 215.85, saturation: 0.98 and lightness: 0.48.

The process color (four-color CMYK) of #263f3f color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #263f3f is #ff9999. Color #263f3f contains mainly RED.

Color Spaces
Color spaces of #263f3fValue
RGB38, 63, 63
HSL0.5, 0.25, 0.2
HSV180°, 40°, 25°
XYZ3.47, 4.33, 5.35
Base Numbers
Base Red Green Blue
Binary 100110 111111 111111
Octal 46 77 77
Decimal 38 63 63
Hex 26 3F 3F

RGB Percentages for Color #263f3f

23.17%
38.41%
38.41%

CMYK Percentages of the Color #263f3f

39.68%
75.29%
CSS Codes for Color #263f3f
.mybgColor {background-color: #263f3f;}
.myforeColor {color: #263f3f;}
.myborderColor {border:3px solid #263f3f;}
Text Font Color #263f3f

<p style="color:#263f3f">Text here</p>

This sample text is styled with the font color #263f3f. 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,

Background Color #263f3f

<div style="background-color:#263f3f">Div content here</div>

The background color of this div is #263f3f
Border Color #263f3f

<div style="border:3px solid #263f3f">Div here</div>

The border color of this div is #263f3f
Css3 Examples
            .textShadowRgb {
                text-shadow: 4px 4px 2px rgba(38, 63, 63, 0.8);            }
            .textShadowHex {
                text-shadow: 4px 4px 2px #263f3f;            }
            .divShadow {
                -moz-box-shadow: 1px 1px 3px #263f3f;
-webkit-box-shadow: 1px 1px 3px #263f3f;
box-shadow: 1px 1px 3px #263f3f;            }
            
Text Shadow Using RGB Values

<p style="text-shadow: 4px 4px 2px rgba(38, 63, 63, 0.8);">Text here</p>

This text has a shadow with RGB values.

Text Shadow Using Hex Values

<p style="text-shadow: 4px 4px 2px #263f3f;">Text here</p>

This text has a shadow with hexadecimal (hex) values.

Shadow Div Box

<div style="-moz-box-shadow: 1px 1px 3px #263f3f; -webkit-box-shadow: 1px 1px 3px #263f3f; box-shadow: 1px 1px 3px #263f3f;">Div content here</div>

This div box has a shadow with a specified color. #263f3f

Scroll to Top