What is the function of the `via-*` class in a Tailwind CSS gradient?
The `via-*` class introduces a middle color stop. Standard dual gradients blend directly from the start (`from-*`) to the end (`to-*`). Adding a `via-*` class instructs the CSS engine to route the color interpolation through a middle color shade, resulting in a three-color gradient sequence.
Can I configure custom HEX color codes instead of the standard Tailwind color palette?
Yes. Modern versions of Tailwind CSS support arbitrary values using square brackets. You can specify precise hex codes in your HTML class strings, for example: `from-[#1e3a8a] via-[#3b82f6] to-[#93c5fd]`. Our tool exports both standard classes and raw CSS for precise mapping.
Are these gradients compatible across older browser systems?
Yes. The exported raw CSS options generate standard W3C-compliant linear gradient codes. Modern browsers support these declarations, and we recommend providing a flat solid fallback color for outdated browsers.
Are my color selections or custom hex sequences sent to a server?
No. All color blends, format selections, and class compiles are computed strictly locally on your computer inside your browser window. No network assets or tracking scripts record your color choices, maintaining complete privacy.
Strict Local Compilation: The Tailwind gradient code compiler executes completely within the local browser sandbox. We do not store or transmit your color layout logs.