PopPopBubbleTheme constructor

const PopPopBubbleTheme({
  1. Color gridBackgroundColor = const Color(0xFF4DD0E1),
  2. Color bubbleBaseColor = const Color(0xFF00ACC1),
  3. Color bubbleBodyColor = const Color.fromARGB(120, 255, 255, 255),
  4. Color bubbleRimColor = const Color(0xFFE0E0E0),
  5. Color poppedBubbleBaseColor = const Color(0xFF00BCD4),
  6. double size = 60,
  7. double strokeWidth = 4.0,
})

Creates a PopPopBubbleTheme.

The theme defines the colour scheme of various parts of the game.

Implementation

const PopPopBubbleTheme({
  this.gridBackgroundColor = const Color(0xFF4DD0E1),
  this.bubbleBaseColor = const Color(0xFF00ACC1),
  this.bubbleBodyColor = const Color.fromARGB(120, 255, 255, 255),
  this.bubbleRimColor = const Color(0xFFE0E0E0),
  this.poppedBubbleBaseColor = const Color(0xFF00BCD4),
  this.size = 60,
  this.strokeWidth = 4.0,
});