first commit
This commit is contained in:
14
lib/constants/app_colors.dart
Normal file
14
lib/constants/app_colors.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class AppColors {
|
||||
// Background colors
|
||||
static const Color background = Color.fromARGB(255, 48, 48, 51);
|
||||
static const Color coral = Color(0xFFFF6B6B);
|
||||
|
||||
// Button colors
|
||||
static const Color buttonColor = Color.fromARGB(255, 112, 112, 112);
|
||||
static const Color white = Colors.white;
|
||||
|
||||
// Neutral colors
|
||||
static const Color backgroundGrey = Color.fromARGB(255, 89, 89, 89);
|
||||
}
|
||||
Reference in New Issue
Block a user