weatherTemp property
DynamicColor
get
weatherTemp
Implementation
DynamicColor get weatherTemp => DynamicColor(
name: "weather_temp",
palette: (scheme) => scheme.primaryPalette,
tone: (scheme) => scheme.isDark ? 80.0 : 40.0,
isBackground: false,
background: (_) => widgetBackground,
// TODO: investigate if 70 should be changed to 7 (maybe a typo?)
contrastCurve: (_) => const ContrastCurve(5.0, 5.0, 70.0, 11.0),
);