mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 23:42:00 +01:00
21 lines
760 B
Dart
21 lines
760 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
const Color wgerPrimaryColor = Color(0xff2a4c7d);
|
|
const Color wgerSecondaryColor = Color(0xffe63946);
|
|
|
|
final ThemeData wgerTheme = ThemeData(
|
|
primaryColor: wgerPrimaryColor,
|
|
accentColor: wgerSecondaryColor,
|
|
|
|
// This makes the visual density adapt to the platform that you run
|
|
// the app on. For desktop platforms, the controls will be smaller and
|
|
// closer together (more dense) than on mobile platforms.
|
|
visualDensity: VisualDensity.adaptivePlatformDensity,
|
|
|
|
textTheme: TextTheme(
|
|
//headline1: TextStyle(fontSize: 30.0, fontFamily: "OpenSansBold"),
|
|
headline2: TextStyle(fontSize: 30.0, fontFamily: "OpenSansBold"),
|
|
//headline6: TextStyle(fontSize: 36.0, fontStyle: FontStyle.italic),
|
|
),
|
|
);
|