Border color
Set your border color with rapid
How to apply a background color
Border colors are applied using the following utility patttern border-[color]-[shade]. Shades are in the range of 50-900 (in tailwindcss manner)
Here is an example
RapidContainer(
styles: "border-grey-900",
child: MyWidget()
);
Accepted border colors
No variant
border-whiteborder-blackborder-transparent
With variants
border-amberborder-blueborder-blackgreyborder-brownborder-cyanborder-deeporangeborder-deeppurpleborder-greenborder-greyborder-indigoborder-lightblueborder-lightgreenborder-limeborder-orangeborder-pinkborder-purpleborder-redborder-tealborder-yellow
Variant color ranges
50100200300400500600700800900
How to apply range to variant color
Here is a quick example
RapidContainer(
styles: "border-pink-50", // here 50 is the range of the color
child: MyWidget()
);