text_style_ms.dart
4.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
import 'package:flutter/cupertino.dart';
import '../common/colors.dart';
class TextStyleMs {
static const TextStyle color66_16 = TextStyle(
color: ColorConfig.color66,
fontSize: 16,
);
static const TextStyle color66_16_500 = TextStyle(
color: ColorConfig.color66,
fontSize: 16,
fontWeight: FontWeight.w500,
);
static const TextStyle color66_18_400 = TextStyle(
color: ColorConfig.color66,
fontSize: 18,
fontWeight: FontWeight.w400,
);
static const TextStyle color203152_18_600 = TextStyle(
color: ColorConfig.color203152,
fontSize: 18,
fontWeight: FontWeight.w600,
);
static const TextStyle color66_14 = TextStyle(
color: ColorConfig.color66,
fontSize: 14,
);
static const TextStyle color66_12 = TextStyle(
color: ColorConfig.color66,
fontSize: 12,
);
static const TextStyle color33_14_500 = TextStyle(
color: ColorConfig.color33,
fontSize: 14,
fontWeight: FontWeight.w500,
);
static const TextStyle color33_12_400 = TextStyle(
color: ColorConfig.color33,
fontSize: 12,
fontWeight: FontWeight.w400,
);
static const TextStyle color33_14_400 = TextStyle(
color: ColorConfig.color33,
fontSize: 14,
fontWeight: FontWeight.w400,
);
static const TextStyle color33_16_500 = TextStyle(
color: ColorConfig.color33,
fontSize: 14,
fontWeight: FontWeight.w500,
);
static const TextStyle color33_20_600 = TextStyle(
color: ColorConfig.color33,
fontSize: 20,
fontWeight: FontWeight.w600,
);
static const TextStyle colorEF2329_20_600 = TextStyle(
color: ColorConfig.colorEF2329,
fontSize: 20,
fontWeight: FontWeight.w600,
);
static const TextStyle color00_16_600 = TextStyle(
color: ColorConfig.color00,
fontSize: 16,
fontWeight: FontWeight.w600,
);
static const TextStyle color00_20_400 = TextStyle(
color: ColorConfig.color00,
fontSize: 20,
fontWeight: FontWeight.w400,
);
static const TextStyle color33_16_400 = TextStyle(
color: ColorConfig.color33,
fontSize: 14,
fontWeight: FontWeight.w400,
);
static const TextStyle color99_14_400 = TextStyle(
color: ColorConfig.color_999,
fontSize: 14,
fontWeight: FontWeight.w400,
);
static const TextStyle color99_14_500 = TextStyle(
color: ColorConfig.color_999,
fontSize: 14,
fontWeight: FontWeight.w500,
);
static const TextStyle color99_14_300 = TextStyle(
color: ColorConfig.color_999,
fontSize: 14,
fontWeight: FontWeight.w300,
);
static const TextStyle color99_10_400 = TextStyle(
color: ColorConfig.color_999,
fontSize: 10,
fontWeight: FontWeight.w400,
);
static const TextStyle colorBF_14_400 = TextStyle(
color: ColorConfig.colorBFBFBF,
fontSize: 14,
fontWeight: FontWeight.w400,
);
static const TextStyle color99_12_400 = TextStyle(
color: ColorConfig.color_999,
fontSize: 14,
fontWeight: FontWeight.w400,
);
static const TextStyle colorFF8F24_12 = TextStyle(
color: ColorConfig.colorFF8F24,
fontSize: 12,
);
static const TextStyle colorFF761E_12_500 = TextStyle(
color: ColorConfig.colorFF761E,
fontSize: 12,
fontWeight: FontWeight.w500,
);
static const TextStyle colorFF761E_12_400 = TextStyle(
color: ColorConfig.colorFF761E,
fontSize: 12,
fontWeight: FontWeight.w400,
);
static const TextStyle colorFF761E_16_400 = TextStyle(
color: ColorConfig.colorFF761E,
fontSize: 16,
fontWeight: FontWeight.w400,
);
static const TextStyle colorFF761E_16_500 = TextStyle(
color: ColorConfig.colorFF761E,
fontSize: 16,
fontWeight: FontWeight.w500,
);
static const TextStyle colorFF761E_14_400 = TextStyle(
color: ColorConfig.colorFF761E,
fontSize: 14,
fontWeight: FontWeight.w400,
);
static const TextStyle white_20_600 = TextStyle(
color: ColorConfig.white,
fontSize: 20,
fontWeight: FontWeight.w600,
);
static const TextStyle white_10 = TextStyle(
color: ColorConfig.white,
fontSize: 10,
);
static const TextStyle white_12 = TextStyle(
color: ColorConfig.white,
fontSize: 12,
);
static const TextStyle white_16 = TextStyle(
color: ColorConfig.white,
fontSize: 16,
fontWeight: FontWeight.w500,
);
static const TextStyle white_16_600 = TextStyle(
color: ColorConfig.white,
fontSize: 16,
fontWeight: FontWeight.w600,
);
static const TextStyle white_18 = TextStyle(
color: ColorConfig.white,
fontSize: 18,
fontWeight: FontWeight.w500,
);
static const TextStyle white_14 = TextStyle(
color: ColorConfig.white,
fontSize: 14,
fontWeight: FontWeight.w500,
);
static const TextStyle colorF9F9F9_14_400 = TextStyle(
color: ColorConfig.colorF9F9F9,
fontSize: 14,
fontWeight: FontWeight.w400,
);
}