flutter tools

Hex to Flutter Color Converter

Paste a web-style hex value and copy const Color(0x…) plus an RGBO variant for transparency-aware UIs.

Supports #RGB, #RRGGBB, and #AARRGGBB (Flutter ARGB order).

Color(0x…)

const Color(0xFF54C5F8)

Color.fromRGBO(…)

Color.fromRGBO(84, 197, 248, 1.000)