mirror of
https://gitlab.com/openlp/openlp-mobile-remote.git
synced 2024-12-23 04:12:49 +00:00
9 lines
155 B
Dart
9 lines
155 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
Color _blue = Color(0xFF3D6ABD);
|
||
|
|
||
|
ThemeData appTheme = ThemeData(
|
||
|
primaryColor: _blue,
|
||
|
accentColor: _blue,
|
||
|
);
|