Soft gradient generator for Flutter
Create a soft gradient generator built for Flutter. This page gives you a ready-to-use color system, export code, and a live gradient preview — no design tools required.
Color palette
Soft gradient generator for Flutter explained
The soft gradient generator for flutter pairs #f5c3fc as its primary hue with #b4f0f9 as the accent. The palette is balanced for soft aesthetics while keeping text readable against the surface color.
Every swatch is derived from the same two anchor colors, so the gradient generator stays harmonious across backgrounds, borders, buttons, and hover states. Copy the CSS below or open it in Flutter and apply it immediately.
Use the preview image as a starting point for your own mockups. It shows the exact #f5c3fc → #a7edf8 gradient applied to a phone screen, a primary button, and a wave pattern so you can see how the soft look plays out in a real interface.
Export code
/* CSS Custom Properties */
:root {
--background: #fef6ff;
--surface: #fffbff;
--text-primary: #111827;
--text-secondary: #7c7c88;
--primary: #f5c3fc;
--secondary: #a7edf8;
--accent: #b4f0f9;
}
/* Tailwind CSS config (extend.colors) */
module.exports = {
theme: {
extend: {
colors: {
'background': '#fef6ff',
'surface': '#fffbff',
'text-primary': '#111827',
'text-secondary': '#7c7c88',
'primary': '#f5c3fc',
'secondary': '#a7edf8',
'accent': '#b4f0f9',
}
}
}
};