This palette evokes a sense of reliability and innovation, reminiscent of a modern corporate environment with a tech-savvy edge
/* CSS */
.color-1 {
color: #005EB8;
}
.color-2 {
color: #00A3E0;
}
.color-3 {
color: #B3D3E6;
}
.color-4 {
color: #4A4A4A;
}
.color-5 {
color: #F5F5F5;
}
/* CSS Variables */
:root {
--color-1: #005EB8;
--color-2: #00A3E0;
--color-3: #B3D3E6;
--color-4: #4A4A4A;
--color-5: #F5F5F5;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #005EB8, #00A3E0, #B3D3E6, #4A4A4A, #F5F5F5);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #005EB8, #00A3E0, #B3D3E6, #4A4A4A, #F5F5F5);
}
Professional-Tech Palette color palette created on .