Files
tripz/lib/constant/colors.dart
Hamza-Ayed 35f2bd61a2 9/13/1
2023-09-13 15:29:32 +03:00

10 lines
344 B
Dart

import 'package:flutter/material.dart';
class AppColor {
static const Color primaryColor = Colors.black;
static const Color secondaryColor = Colors.white;
static const Color accentColor = Colors.grey;
static const Color redColor = Color.fromARGB(255, 199, 56, 46);
static const Color greenColor = Color.fromARGB(255, 43, 225, 43);
}