feat(ui): add pricing card
continuous-integration/drone/pr Build is failing

This commit is contained in:
2023-04-28 18:40:40 +02:00
parent 01a5619dc5
commit bfbeabe7ec
15 changed files with 766 additions and 6 deletions
@@ -25,6 +25,9 @@ abstract class Constants {
static const blue3 = Color(0xFF1A84F7);
static const blue4 = Color(0xFF1344E4);
static const blue1Btn = Color(0xFF3C97FB);
static const blue2Btn = Color(0xFF446DF4);
static const grey1 = Color(0xFF60656A);
static const grey2 = Color(0xFF383C40);
@@ -37,10 +40,15 @@ abstract class Constants {
static const red1 = Color(0xFFFB5E3C);
static const red2 = Color(0xFFF44464);
static const purple1 = Color(0xFFB79EFF);
static const purple2 = Color(0xFF6865F2);
static const blueGradient = [blue1, blue2];
static const blueBtnGradient = [blue1Btn, blue2Btn];
static const blueDarkGradient = [blue3, blue4];
static const greyGradient = [grey1, grey2];
static const greyDarkGradient = [grey3, grey4];
static const greenGradient = [green1, green2];
static const redGradient = [red1, red2];
static const purpleGradient = [purple1, purple2];
}