Flutter Color Palette

Brightness

Saturation

Warmth

UI Examples

Explore beautiful UI components with Flutter palette

Share this palette to:

Flutter color palette PNG image

Download flutter color palette PNG image (landscape)
Download flutter color palette PNG image (square)

Flutter color palette CSS

/* CSS */
.color-1 {
color: #faa3af;
}
.color-2 {
color: #fcc5d1;
}
.color-3 {
color: #f9e1e6;
}
.color-4 {
color: #aff3d3;
}
.color-5 {
color: #98d9f1;
}

/* CSS Variables */
:root {
--color-1: #faa3af;
--color-2: #fcc5d1;
--color-3: #f9e1e6;
--color-4: #aff3d3;
--color-5: #98d9f1;
}

Flutter background gradient CSS

/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #faa3af, #fcc5d1, #f9e1e6, #aff3d3, #98d9f1);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #faa3af, #fcc5d1, #f9e1e6, #aff3d3, #98d9f1);
}

Flutter color palette created on .