initial commit

This commit is contained in:
Oliwier Adamczyk
2025-10-05 10:07:06 +02:00
commit 4804732340
150 changed files with 5563 additions and 0 deletions

8
lib/ui/style/colors.dart Normal file
View File

@@ -0,0 +1,8 @@
import 'dart:ui';
class ColorPalette {
ColorPalette._();
static final Color primary = Color.fromARGB(255, 235, 35, 22);
static final Color secondary = Color.fromARGB(55, 125, 125, 125);
}

View File

@@ -0,0 +1,14 @@
class Margins {
Margins._();
static double extraSmall = 4;
static double small = 8;
static double medium = 16;
}
class TextSizes {
TextSizes._();
static double small = 14;
static double medium = 18;
static double large = 24;
}