hudHealthHighlight method

Color? hudHealthHighlight(
  1. PerformanceHealthLevel level
)

Like healthHighlight, but with the floating window's colors.

The window sits on a dark panel, so its warn and bad colors are tuned separately from the ones used on app surfaces.

Implementation

Color? hudHealthHighlight(PerformanceHealthLevel level) {
  switch (level) {
    case PerformanceHealthLevel.normal:
      return null;
    case PerformanceHealthLevel.elevated:
      return hudWarn;
    case PerformanceHealthLevel.critical:
      return hudBad;
  }
}