first commit

This commit is contained in:
Dinis Maria Grulha Filipe
2026-02-23 11:08:38 +00:00
commit 803bc197d4
131 changed files with 5689 additions and 0 deletions

View 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);
}