inserida a fonte, e criada a tela de login_screen.dart

This commit is contained in:
Reginaldo
2023-05-26 17:15:56 -03:00
parent dcfdbb4b29
commit 352417006c
10 changed files with 270 additions and 168 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 green = Color(0xff06790c);
}