import 'package:flutter/material.dart'; // Define action texts class ButtonActions { static const String checkIn = "Check In"; static const String checkOut = "Check Out"; static const String requestRegularize = " Request Regularize"; static const String rejected = "Rejected"; static const String approved = "Approved"; static const String requested = "Requested"; static const String approve = "Approve"; static const String reject = "Reject"; } // Map action texts to colors class AttendanceActionColors { static const Map colors = { ButtonActions.checkIn: Colors.green, ButtonActions.checkOut: Colors.red, ButtonActions.requestRegularize: Colors.blue, ButtonActions.rejected: Colors.orange, ButtonActions.approved: Colors.green, ButtonActions.requested: Colors.yellow, ButtonActions.approve: Colors.blueAccent, ButtonActions.reject: Colors.pink, }; }