Skip to content

Commit 7b09658

Browse files
committed
add info and positive colors as tertiary and outline ?
1 parent d42bc2b commit 7b09658

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: lib/main.dart

+3-2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ void callbackDispatcher() {
6363
});
6464
}
6565

66+
6667
class MyApp extends StatefulWidget {
6768
@override
6869
_MyAppState createState() => _MyAppState();
@@ -127,8 +128,8 @@ class _MyAppState extends State<MyApp> {
127128
onBackground: Colors.black,
128129
surface: Colors.white,
129130
onSurface: Colors.black,
130-
// TODO: info #A3D9FF
131-
// TODO: positive #5BBA6F
131+
tertiary: Color(0xFFA3D9FF), // Info color
132+
outline: Color(0xFF5BBA6F) // Positive color
132133
),
133134
fontFamily: 'Nunito',
134135
textTheme: TextTheme(

0 commit comments

Comments
 (0)