PlayerControlsTheme.light constructor

PlayerControlsTheme.light()

Create a light theme

Implementation

factory PlayerControlsTheme.light() {
  return const PlayerControlsTheme(
    primaryColor: Colors.blue,
    backgroundColor: Colors.white70,
    iconColor: Colors.black87,
    textColor: Colors.black87,
    progressBarColor: Colors.blue,
    progressBarBackgroundColor: Colors.black26,
  );
}