filledOutlineTheme static method
Implementation
static TWidgetTheme filledOutlineTheme(Color color, [bool isDarkMode = false]) {
final m = color.toMaterial();
return TWidgetTheme(
isDarkMode: isDarkMode,
type: TVariant.filledOutline,
color: m,
container: Colors.transparent,
containerVariant: m.shade(400),
onContainer: m.shade(400),
onContainerVariant: m.shade(50),
outline: m.shade(300),
shadow: m.shade(400).withAlpha(35),
);
}