novo projeto

This commit is contained in:
Reginaldo
2023-05-24 18:43:37 -03:00
parent aa5c2a9423
commit ddacba5525
135 changed files with 4759 additions and 0 deletions

14
lib/utils/colors.dart Normal file
View File

@@ -0,0 +1,14 @@
import 'package:flutter/material.dart';
class PaletteColors{
static const Color white = Colors.white;
static const Color primaryColor = Color(0xffBB0202);
static const Color secundColor = Color(0xffFF9E75);
static const Color bgColor = Color(0xff3A3A3A);
static const Color grey = Color (0xff757575);
static const Color greyInput = Color (0xffE1E1E1);
static const Color lightGrey = Color(0xffD0D0D0);
static const Color midGrey = Color(0xffC4C4C4);
static const Color backGrey = Color(0xffE9E9E9);
static const Color greenAcent = Color(0xff1DBF24);
}