Utilities for controlling the color opacity of a widget.
Center(
child: Row(
children: [
Container(
width: StiloWidth.w64,
height: StiloHeight.h36,
color: StiloColor.blue[500].withOpacity(StiloColorOpacity.opacity50),
),
Container(
width: StiloWidth.w36,
height: StiloHeight.h64,
color: StiloColor.red[500].withOpacity(StiloColorOpacity.opacity95),
),
],
),
)