c2f
c2f copied to clipboard
C2F can convert css style to Flutter code online.
Hi, The HSL colors in the context of a linear gradient don't work.  The hsl colors should be converted to RGBA first. :)
Thanks for your code, this is helpful for my project with NodeJS. I hope to install this from NPM. Like `npm install c2f`.
css input: ``` background-color: #e0e0e0; color:#e0e0e0; ``` Flutter ``` Container( child: Text( "Hello World", style: TextStyle( color: Color(0xE0E0E000), ), ), decoration: BoxDecoration( color: Color(0xE0E0E000), ) ), ``` error: #e0e0e0 should...
