fluffychat/lib/pangea/choreographer/choreo_constants.dart
2025-11-10 15:57:40 -05:00

14 lines
511 B
Dart

import 'package:flutter/material.dart';
class ChoreoConstants {
static const numberOfITChoices = 4;
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;
static const int msBeforeIGCStart = 10000;
static const int maxLength = 1000;
static const String inputTransformTargetKey = 'input_text_field';
}