fluffychat/lib/pangea/choreographer/constants/choreo_constants.dart
ggurdin 027158e286
1435 refactor into function specific groupings (#1440)
* fix: deleted unreferenced files

* fix: sort files based on function
2025-01-14 14:00:30 -05:00

14 lines
510 B
Dart

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;
}