EM2RP/em2rp/lib/utils/colors.dart
2025-03-10 20:00:31 +01:00

9 lines
311 B
Dart

import 'package:flutter/material.dart';
class AppColors {
static const Color noir = Color(0xFF000000); // Noir
static const Color blanc = Color(0xFFFFFFFF); // Blanc
static const Color rouge = Color.fromARGB(255, 159, 0, 0); // Rouge
static const Color gris = Color(0xFF808080); // Gris (gris moyen)
}