mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-10-31 22:17:29 +00:00
81 lines
1.9 KiB
Dart
81 lines
1.9 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:selfprivacy/utils/named_font_weight.dart';
|
|
|
|
import 'brand_colors.dart';
|
|
|
|
final defaultTextStyle = TextStyle(
|
|
fontSize: 15,
|
|
color: BrandColors.textColor1,
|
|
);
|
|
|
|
final headline1Style = defaultTextStyle.copyWith(
|
|
fontSize: 40,
|
|
fontWeight: NamedFontWeight.extraBold,
|
|
color: BrandColors.headlineColor,
|
|
);
|
|
|
|
final headline2Style = defaultTextStyle.copyWith(
|
|
fontSize: 24,
|
|
fontWeight: NamedFontWeight.extraBold,
|
|
color: BrandColors.headlineColor,
|
|
);
|
|
|
|
final onboardingTitle = defaultTextStyle.copyWith(
|
|
fontSize: 30,
|
|
fontWeight: NamedFontWeight.extraBold,
|
|
color: BrandColors.headlineColor,
|
|
);
|
|
|
|
final headline3Style = defaultTextStyle.copyWith(
|
|
fontSize: 20,
|
|
fontWeight: NamedFontWeight.extraBold,
|
|
color: BrandColors.headlineColor,
|
|
);
|
|
|
|
final headline4Style = defaultTextStyle.copyWith(
|
|
fontSize: 18,
|
|
fontWeight: NamedFontWeight.medium,
|
|
color: BrandColors.headlineColor,
|
|
);
|
|
|
|
final headline4UnderlinedStyle = defaultTextStyle.copyWith(
|
|
fontSize: 18,
|
|
fontWeight: NamedFontWeight.medium,
|
|
color: BrandColors.headlineColor,
|
|
decoration: TextDecoration.underline,
|
|
);
|
|
|
|
final headline5Style = defaultTextStyle.copyWith(
|
|
fontSize: 15,
|
|
fontWeight: NamedFontWeight.medium,
|
|
color: BrandColors.headlineColor.withOpacity(0.8),
|
|
);
|
|
|
|
final body1Style = defaultTextStyle;
|
|
final body2Style = defaultTextStyle.copyWith(
|
|
color: BrandColors.textColor2,
|
|
);
|
|
|
|
final buttonTitleText = defaultTextStyle.copyWith(
|
|
color: BrandColors.white,
|
|
fontSize: 16,
|
|
fontWeight: FontWeight.bold,
|
|
height: 1,
|
|
);
|
|
|
|
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 = TextStyle(
|
|
fontSize: 11,
|
|
color: BrandColors.textColor1,
|
|
height: 1.7,
|
|
);
|
|
|
|
final progressTextStyleDark = progressTextStyleLight.copyWith(
|
|
color: BrandColors.white,
|
|
);
|