mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-10 10:53:12 +00:00
20 lines
523 B
Dart
20 lines
523 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'package:selfprivacy/config/text_themes.dart';
|
|
|
|
import 'brand_colors.dart';
|
|
|
|
var theme = ThemeData(
|
|
primaryColor: BrandColors.primary,
|
|
brightness: Brightness.light,
|
|
scaffoldBackgroundColor: BrandColors.scaffoldBackground,
|
|
textTheme: GoogleFonts.interTextTheme(
|
|
TextTheme(
|
|
headline1: headline1Style,
|
|
headline2: headline2Style,
|
|
caption: captionStyle,
|
|
bodyText1: bodyText1Style,
|
|
),
|
|
),
|
|
);
|