selfprivacy.org.app/lib/config/brand_theme.dart

24 lines
665 B
Dart
Raw Normal View History

2020-11-29 20:07:46 +00:00
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
2020-11-30 10:03:55 +00:00
import 'package:selfprivacy/config/text_themes.dart';
2020-11-29 20:07:46 +00:00
import 'brand_colors.dart';
2020-12-01 19:08:19 +00:00
final theme = ThemeData(
2020-11-29 20:07:46 +00:00
primaryColor: BrandColors.primary,
brightness: Brightness.light,
scaffoldBackgroundColor: BrandColors.scaffoldBackground,
textTheme: GoogleFonts.interTextTheme(
TextTheme(
2020-11-30 10:03:55 +00:00
headline1: headline1Style,
headline2: headline2Style,
caption: captionStyle,
2020-12-01 19:08:19 +00:00
bodyText1: body1Style,
2020-11-29 20:07:46 +00:00
),
),
);
2020-12-01 19:08:19 +00:00
2020-12-02 09:16:23 +00:00
final brandPagePadding1 = EdgeInsets.symmetric(horizontal: 15, vertical: 30);
final brandPagePadding2 = EdgeInsets.symmetric(horizontal: 15);