Files
dde_gesture_manager/app/lib/themes/light.dart
T

19 lines
479 B
Dart
Raw Normal View History

2021-09-23 18:40:12 +08:00
import 'package:flutter/material.dart';
var lightTheme = ThemeData.light().copyWith(
primaryColor: Colors.blue,
2021-09-27 00:14:48 +08:00
scaffoldBackgroundColor: Color(0xfff8f8f8),
backgroundColor: Color(0xffffffff),
2021-09-28 18:35:35 +08:00
iconTheme: IconThemeData(
color: Color(0xff414d68),
),
textTheme: ThemeData.light().textTheme.copyWith(
headline1: TextStyle(
color: Color(0xff414d68),
),
bodyText2: TextStyle(
color: Color(0xff414d68),
),
),
2021-09-27 00:14:48 +08:00
);