@@ -37,7 +37,8 @@ import 'package:flutter/material.dart';
3737
3838abstract class HackRUColors {
3939 static const Color blue = Color (0xff1f6aa0 );
40- static const Color blue_grey = Color (0xffd1e9ef );
40+ static const Color off_white_blue = Color (0xffd1e9ef );
41+ static const Color blue_grey = Colors .blueGrey;
4142 static const LinearGradient loading_gradient = LinearGradient (colors: [
4243 Colors .black26,
4344 Colors .transparent,
@@ -123,124 +124,124 @@ ThemeData _buildTheme() {
123124 textTheme: const TextTheme (
124125 headline1: TextStyle (
125126 fontSize: 100.0 ,
126- color: HackRUColors .white ,
127+ color: HackRUColors .off_white_blue ,
127128 fontWeight: FontWeight .w600,
128129 ),
129130 headline2: TextStyle (
130131 fontSize: 90.0 ,
131- color: HackRUColors .white ,
132+ color: HackRUColors .off_white_blue ,
132133 fontWeight: FontWeight .bold,
133134 ),
134135 headline3: TextStyle (
135136 fontSize: 45.0 ,
136- color: HackRUColors .white ,
137+ color: HackRUColors .off_white_blue ,
137138 ),
138139 headline4: TextStyle (
139140 fontSize: 35.0 ,
140- color: HackRUColors .white ,
141+ color: HackRUColors .off_white_blue ,
141142 ),
142143 headline5: TextStyle (
143144 fontSize: 25.0 ,
144- color: HackRUColors .charcoal_light ,
145+ color: HackRUColors .off_white_blue ,
145146 fontWeight: FontWeight .w700,
146147 ),
147148 headline6: TextStyle (
148149 fontSize: 20.0 ,
149- color: HackRUColors .charcoal_light ,
150+ color: HackRUColors .off_white_blue ,
150151 fontWeight: FontWeight .w700,
151152 ),
152153 subtitle1: TextStyle (
153154 fontSize: 18.0 ,
154- color: HackRUColors .charcoal_light ,
155+ color: HackRUColors .off_white_blue ,
155156 fontWeight: FontWeight .w700,
156157 ),
157158 bodyText1: TextStyle (
158- color: HackRUColors .charcoal_light ,
159+ color: HackRUColors .off_white_blue ,
159160 ),
160161 bodyText2: TextStyle (
161- color: HackRUColors .charcoal_light ,
162+ color: HackRUColors .off_white_blue ,
162163 ),
163164 ),
164165 primaryTextTheme: const TextTheme (
165166 headline1: TextStyle (
166167 fontSize: 100.0 ,
167- color: HackRUColors .pink ,
168+ color: HackRUColors .off_white_blue ,
168169 fontWeight: FontWeight .w600,
169170 ),
170171 headline2: TextStyle (
171172 fontSize: 90.0 ,
172- color: HackRUColors .pink ,
173+ color: HackRUColors .off_white_blue ,
173174 fontWeight: FontWeight .bold,
174175 ),
175176 headline3: TextStyle (
176177 fontSize: 45.0 ,
177- color: HackRUColors .pink ,
178+ color: HackRUColors .off_white_blue ,
178179 ),
179180 headline4: TextStyle (
180181 fontSize: 35.0 ,
181- color: HackRUColors .pink ,
182+ color: HackRUColors .off_white_blue ,
182183 ),
183184 headline5: TextStyle (
184185 fontSize: 25.0 ,
185- color: HackRUColors .pink ,
186+ color: HackRUColors .off_white_blue ,
186187 fontWeight: FontWeight .w700,
187188 ),
188189 headline6: TextStyle (
189190 fontSize: 20.0 ,
190- color: HackRUColors .pink ,
191+ color: HackRUColors .off_white_blue ,
191192 fontWeight: FontWeight .w700,
192193 ),
193194 subtitle1: TextStyle (
194195 fontSize: 18.0 ,
195- color: HackRUColors .pink ,
196+ color: HackRUColors .off_white_blue ,
196197 fontWeight: FontWeight .w700,
197198 ),
198199 bodyText1: TextStyle (
199- color: HackRUColors .pink ,
200+ color: HackRUColors .off_white_blue ,
200201 ),
201202 bodyText2: TextStyle (
202- color: HackRUColors .pink ,
203+ color: HackRUColors .off_white_blue ,
203204 ),
204205 ),
205206 accentTextTheme: const TextTheme (
206207 headline1: TextStyle (
207208 fontSize: 100.0 ,
208- color: HackRUColors .yellow ,
209+ color: HackRUColors .blue_grey ,
209210 fontWeight: FontWeight .w600,
210211 ),
211212 headline2: TextStyle (
212213 fontSize: 90.0 ,
213- color: HackRUColors .yellow ,
214+ color: HackRUColors .blue_grey ,
214215 fontWeight: FontWeight .bold,
215216 ),
216217 headline3: TextStyle (
217218 fontSize: 45.0 ,
218- color: HackRUColors .yellow ,
219+ color: HackRUColors .blue_grey ,
219220 ),
220221 headline4: TextStyle (
221222 fontSize: 35.0 ,
222- color: HackRUColors .yellow ,
223+ color: HackRUColors .blue_grey ,
223224 ),
224225 headline5: TextStyle (
225226 fontSize: 25.0 ,
226- color: HackRUColors .charcoal_light ,
227+ color: HackRUColors .blue_grey ,
227228 fontWeight: FontWeight .w700,
228229 ),
229230 headline6: TextStyle (
230231 fontSize: 20.0 ,
231- color: HackRUColors .yellow ,
232+ color: HackRUColors .blue_grey ,
232233 fontWeight: FontWeight .w700,
233234 ),
234235 subtitle1: TextStyle (
235236 fontSize: 18.0 ,
236- color: HackRUColors .yellow ,
237+ color: HackRUColors .blue_grey ,
237238 fontWeight: FontWeight .w700,
238239 ),
239240 bodyText1: TextStyle (
240- color: HackRUColors .yellow ,
241+ color: HackRUColors .blue_grey ,
241242 ),
242243 bodyText2: TextStyle (
243- color: HackRUColors .yellow ,
244+ color: HackRUColors .blue_grey ,
244245 ),
245246 ),
246247 );
0 commit comments