feat: product view wip

This commit is contained in:
2024-02-05 22:36:16 +07:00
parent 0e7ad81345
commit f407eca735
6 changed files with 500 additions and 23 deletions

View File

@@ -73,6 +73,8 @@ class ColorPalette {
static const Color chathamsBlue = Color(0xFF285BB9);
static const Color background = Color(0xFFDADADA);
static const Color backgroundBlueLight = Color(0xFFEBF3FD);
static const Color blue200 = Color(0xFFBFDBFE);
static const Color slate50 = Color(0xFFF8FAFC);
static const Color slate200 = Color(0xFFE2E8F0);
static const Color slate400 = Color(0xFF94A3B8);
static const Color slate500 = Color(0xFF64748B);
@@ -86,4 +88,19 @@ class ColorPalette {
static const Color green100 = Color(0xFFDCFCE7);
static const Color green400 = Color(0xFF4ADE80);
static const Color green500 = Color(0xFF16A34A);
static const Map<String, Color> investTypeColor = {
'Money Market': purple500,
'Shares': orange500,
'Sharia': green500,
'Bonds': cyan500
};
static const Map<String, Color> investTypeBgColor = {
'Money Market': purple100,
'Shares': orange100,
'Sharia': green100,
'Bonds': cyan100
};
}