0048BA Absolute Zero: Hex Color Code
Color-Conversion
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
#0048BA
#0040A5
#003891
#00307C
#002867
#002053
#00183E
#001029
#000815
#000000
Tints
#0048BA
#1C5CC2
#3971C9
#5585D1
#7199D9
#8EAEE0
#AAC2E8
#C6D6F0
#E3EBF7
#FFFFFF
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
#0049B8
#B86E00
Color Split Complementary
#0049B8
#B81200
Color Triadic
#0049B8
#B80049
#49B800
Color Analogous
#0049B8
#1200B8
#6E00B8
Color Monochromatic
#0049B8
#0058DC
#0167FF
#257CFF
#4A92FF
#6EA8FF
#92BEFF
#B6D3FF
#DBE9FF
Color Preview
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>