c2f icon indicating copy to clipboard operation
c2f copied to clipboard

C2F can convert css style to Flutter code online.

Results 4 c2f issues
Sort by recently updated
recently updated
newest added

Hi, The HSL colors in the context of a linear gradient don't work. ![image](https://user-images.githubusercontent.com/7687231/149117886-12f64586-92a3-4456-88eb-c2709251ae65.png) 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...

![image](https://user-images.githubusercontent.com/46296608/204139781-8f10368a-6c82-463e-ae6c-650a121524b3.png)