initial commit
This commit is contained in:
8
lib/ui/style/colors.dart
Normal file
8
lib/ui/style/colors.dart
Normal 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);
|
||||
}
|
||||
14
lib/ui/style/dimensions.dart
Normal file
14
lib/ui/style/dimensions.dart
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user