mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-17 22:29:15 +00:00
68 lines
1.6 KiB
Dart
68 lines
1.6 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'package:selfprivacy/utils/named_font_weight.dart';
|
|
|
|
import 'brand_colors.dart';
|
|
|
|
final defaultTextStyle = GoogleFonts.inter(
|
|
textStyle: TextStyle(
|
|
fontSize: 15,
|
|
color: BrandColors.textColor1,
|
|
),
|
|
);
|
|
|
|
final headline1Style = GoogleFonts.inter(
|
|
fontSize: 40,
|
|
fontWeight: NamedFontWeight.extraBold,
|
|
color: BrandColors.headlineColor,
|
|
);
|
|
|
|
final headline2Style = GoogleFonts.inter(
|
|
fontSize: 24,
|
|
fontWeight: NamedFontWeight.extraBold,
|
|
color: BrandColors.headlineColor,
|
|
);
|
|
|
|
final onboardingTitle = GoogleFonts.inter(
|
|
fontSize: 30,
|
|
fontWeight: NamedFontWeight.extraBold,
|
|
color: BrandColors.headlineColor,
|
|
);
|
|
|
|
final headline3Style = GoogleFonts.inter(
|
|
fontSize: 20,
|
|
fontWeight: NamedFontWeight.extraBold,
|
|
color: BrandColors.headlineColor,
|
|
);
|
|
|
|
final headline4Style = GoogleFonts.inter(
|
|
fontSize: 18,
|
|
fontWeight: NamedFontWeight.medium,
|
|
color: BrandColors.headlineColor,
|
|
);
|
|
|
|
final body1Style = defaultTextStyle;
|
|
final body2Style = defaultTextStyle.copyWith(
|
|
color: BrandColors.textColor2,
|
|
);
|
|
|
|
final mediumStyle = defaultTextStyle.copyWith(fontSize: 13, height: 1.53);
|
|
|
|
final smallStyle = defaultTextStyle.copyWith(fontSize: 11, height: 1.45);
|
|
|
|
final linkStyle = defaultTextStyle.copyWith(color: BrandColors.blue);
|
|
|
|
final progressTextStyleLight = GoogleFonts.inter(
|
|
textStyle: TextStyle(
|
|
fontSize: 13,
|
|
color: BrandColors.textColor1,
|
|
),
|
|
);
|
|
|
|
final progressTextStyleDark = GoogleFonts.inter(
|
|
textStyle: TextStyle(
|
|
fontSize: 13,
|
|
color: BrandColors.white,
|
|
),
|
|
);
|