mirror of
https://gitlab.com/openlp/openlp-mobile-remote.git
synced 2024-12-22 20:02:53 +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,
|
|
);
|