fluffychat/lib/pangea/constants/choreo_constants.dart
Brord van Wierst 75da9cd87d
import sort
2023-11-27 20:09:30 +01:00

15 lines
530 B
Dart

// Flutter imports:
import 'package:flutter/material.dart';
class ChoreoConstants {
static const numberOfITChoices = 4;
// static const millisecondsToDisplayFeedback = 2500;
static const millisecondsToDisplayFeedback = 0;
static const commonalityThreshold = 0.9;
static const levelThresholdForGreen = 1;
static const levelThresholdForYellow = 2;
static const levelThresholdForRed = 3;
static const green = Colors.green;
static const yellow = Color.fromARGB(255, 206, 152, 2);
static const red = Colors.red;
}