Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

resolve #20 #26

Closed
wants to merge 13 commits into from
8 changes: 8 additions & 0 deletions lib/configs/AppColors.dart
Original file line number Diff line number Diff line change
@@ -1,21 +1,29 @@
import 'package:flutter/material.dart';

class AppColors {
static const Color beige = Color(0xFFA8A878);
static const Color black = Color(0xFF303943);
static const Color blue = Color(0xFF429BED);
static const Color brown = Color(0xFFB1736C);
static const Color darkBrown = Color(0xD0795548);
static const Color grey = Color(0x64303943);
static const Color indigo = Color(0xFF6C79DB);
static const Color lightBlue = Color(0xFF58ABF6);
static const Color lightBrown = Color(0xFFCA8179);
static const Color lightCyan = Color(0xFF98D8D8);
static const Color lightGreen = Color(0xFF78C850);
static const Color lighterGrey = Color(0xFFF4F5F4);
static const Color lightGrey = Color(0xFFF5F5F5);
static const Color lightPink = Color(0xFFEE99AC);
static const Color lightPurple = Color(0xFF9F5BBA);
static const Color lightRed = Color(0xFFF7786B);
static const Color lightTeal = Color(0xFF2CDAB1);
static const Color lightYellow = Color(0xFFFFCE4B);
static const Color lilac = Color(0xFFA890F0);
static const Color pink = Color(0xFFF85888);
static const Color purple = Color(0xFF7C538C);
static const Color red = Color(0xFFFA6555);
static const Color teal = Color(0xFF4FC1A6);
static const Color yellow = Color(0xFFF6C747);
static const Color violet = Color(0xD07038F8);
}