@@ -9,7 +9,7 @@ abstract class StylesManager {
9
9
fontWeight: FontWeightManager .medium,
10
10
);
11
11
12
- static const TextStyle medium14 = TextStyle (
12
+ static const TextStyle medium14Black = TextStyle (
13
13
fontSize: FontSize .s14,
14
14
color: ColorManager .black,
15
15
fontWeight: FontWeightManager .medium,
@@ -32,6 +32,12 @@ abstract class StylesManager {
32
32
color: ColorManager .white,
33
33
);
34
34
35
+ static const TextStyle medium14 = TextStyle (
36
+ fontSize: FontSize .s14,
37
+ color: ColorManager .white,
38
+ fontWeight: FontWeightManager .medium,
39
+ );
40
+
35
41
static const TextStyle semiBold20black = TextStyle (
36
42
fontSize: FontSize .s20,
37
43
fontWeight: FontWeightManager .semiBold,
@@ -62,7 +68,13 @@ abstract class StylesManager {
62
68
color: ColorManager .white,
63
69
);
64
70
65
- static const TextStyle medium16Black = TextStyle (
71
+ static const TextStyle medium22Black = TextStyle (
72
+ fontSize: FontSize .s22,
73
+ fontWeight: FontWeightManager .medium,
74
+ color: ColorManager .black,
75
+ );
76
+
77
+ static const TextStyle medium16Black = TextStyle (
66
78
fontSize: FontSize .s16,
67
79
fontWeight: FontWeightManager .medium,
68
80
color: ColorManager .black,
@@ -93,6 +105,12 @@ abstract class StylesManager {
93
105
color: ColorManager .white,
94
106
);
95
107
108
+ static const TextStyle medium20Black = TextStyle (
109
+ fontSize: FontSize .s20,
110
+ fontWeight: FontWeightManager .medium,
111
+ color: ColorManager .black,
112
+ );
113
+
96
114
static const TextStyle semiBold22 = TextStyle (
97
115
fontSize: FontSize .s22,
98
116
fontWeight: FontWeightManager .semiBold,
0 commit comments