0048BA Absolute Zero: Hex Color Code

#0048BA
( 0, 72, 186 )

Color-Conversion

HEX : #0048BA
RGB : 0, 72, 186
HSL : 216, 100, 36
XYZ : 11, 8, 47
CMYK : 100, 61, 0 27
LUV : 34, -16, -90
LAB : 34, 28, -65
HWB : 216, 0, 28

The hexadecimal value of the color #0048ba is made up of the RGB values of (0 ,72 ,186) and is commonly known as Absolute Zero. The red value is 0, the green value is 72, and the blue value is 186. This color has a hue of 216, saturation of 100, and a lightness value of36 when represented in HSL. In four color CMYK, the color has a process value of 100, 61, 0, and 27. The web safe color of #0048ba is #0049b8. Overall, the color #0048ba is predominantly smalt.

Variations

This section aims to generate accurate tints (created by adding pure white) and shades (created by adding pure black) of the chosen color in increments of 10%.

Shaders

Tints

Color Combinations

Different color harmonies can evoke different moods, and it can be helpful to use them as a starting point for brainstorming color combinations. By exploring different color harmonies, you can identify colors that work well together and create a cohesive color palette for your project.

Color Complementary

Color Split Complementary

Color Triadic

Color Analogous

Color Monochromatic

Color Preview

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Developer

Tailwind

//tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'smalt': '#0048ba',
      },
    }
  },
}
//tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'smalt': {
            100: '#4a92ff',
            200: '#257cff',
            300: '#0167ff',
            400: '#0058dc',
            500: '#0049b8',
            600: '#0048ba',
            700: '#0040a5',
            800: '#003891',
            900: '#00307c',
          },
      },
    }
  },
}

CSS

//global.css
.mybgcolor {background-color:#0048ba; } 
.myforecolor {color:#0048ba; }
.mybordercolor {border:3px solid #0048ba;}
//index.html
<p style="color:#0048ba;">Text here</p>
//index.html
<div style="background-color:#0048ba;">content here</div>
//index.html
<div style="border: 2px solid #0048ba;">content here</div>
//index.html
<p style="text-shadow: 4px 4px 2px #0048ba">Text here</p>
//index.html
<div style="-moz-box-shadow: 1px 1px 3px 2px #0048ba;
  -webkit-box-shadow: 1px 1px 3px 2px #0048ba;
  box-shadow:         1px 1px 3px 2px #0048ba;">
Content here</div>