2026-04-13 09:55:14 -07:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
2026-06-30 15:22:55 +01:00
|
|
|
const _fontFamily = 'Inter';
|
2026-07-24 18:32:43 +01:00
|
|
|
const _chatLineHeight = 22 / 16;
|
2026-04-14 14:33:48 -07:00
|
|
|
|
2026-07-26 23:05:57 +01:00
|
|
|
/// Optional 12sp body style for compact secondary metadata.
|
|
|
|
|
const bodyExtraSmallTextStyle = TextStyle(
|
|
|
|
|
fontFamily: _fontFamily,
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
fontWeight: FontWeight.w400,
|
|
|
|
|
height: 1.25,
|
|
|
|
|
letterSpacing: 0,
|
|
|
|
|
);
|
|
|
|
|
|
2026-04-13 09:55:14 -07:00
|
|
|
const textTheme = TextTheme(
|
|
|
|
|
displayLarge: TextStyle(
|
2026-04-14 14:33:48 -07:00
|
|
|
fontFamily: _fontFamily,
|
2026-04-13 09:55:14 -07:00
|
|
|
fontSize: 52,
|
|
|
|
|
fontWeight: FontWeight.w400,
|
2026-06-30 15:22:55 +01:00
|
|
|
height: 1.23,
|
|
|
|
|
letterSpacing: 0,
|
2026-04-13 09:55:14 -07:00
|
|
|
),
|
|
|
|
|
displayMedium: TextStyle(
|
2026-04-14 14:33:48 -07:00
|
|
|
fontFamily: _fontFamily,
|
2026-04-13 09:55:14 -07:00
|
|
|
fontSize: 44,
|
|
|
|
|
fontWeight: FontWeight.w400,
|
2026-06-30 15:22:55 +01:00
|
|
|
height: 1.18,
|
|
|
|
|
letterSpacing: 0,
|
2026-04-13 09:55:14 -07:00
|
|
|
),
|
|
|
|
|
displaySmall: TextStyle(
|
2026-04-14 14:33:48 -07:00
|
|
|
fontFamily: _fontFamily,
|
2026-04-13 09:55:14 -07:00
|
|
|
fontSize: 36,
|
|
|
|
|
fontWeight: FontWeight.w400,
|
2026-06-30 15:22:55 +01:00
|
|
|
height: 1.22,
|
|
|
|
|
letterSpacing: 0,
|
2026-04-13 09:55:14 -07:00
|
|
|
),
|
|
|
|
|
headlineLarge: TextStyle(
|
2026-04-14 14:33:48 -07:00
|
|
|
fontFamily: _fontFamily,
|
2026-04-13 09:55:14 -07:00
|
|
|
fontSize: 32,
|
|
|
|
|
fontWeight: FontWeight.w600,
|
2026-06-30 15:22:55 +01:00
|
|
|
height: 1.25,
|
|
|
|
|
letterSpacing: 0,
|
2026-04-13 09:55:14 -07:00
|
|
|
),
|
|
|
|
|
headlineMedium: TextStyle(
|
2026-04-14 14:33:48 -07:00
|
|
|
fontFamily: _fontFamily,
|
2026-04-13 09:55:14 -07:00
|
|
|
fontSize: 28,
|
|
|
|
|
fontWeight: FontWeight.w600,
|
2026-06-30 15:22:55 +01:00
|
|
|
height: 1.29,
|
|
|
|
|
letterSpacing: 0,
|
2026-04-13 09:55:14 -07:00
|
|
|
),
|
|
|
|
|
headlineSmall: TextStyle(
|
2026-04-14 14:33:48 -07:00
|
|
|
fontFamily: _fontFamily,
|
2026-04-13 09:55:14 -07:00
|
|
|
fontSize: 24,
|
|
|
|
|
fontWeight: FontWeight.w600,
|
2026-06-30 15:22:55 +01:00
|
|
|
height: 1.33,
|
|
|
|
|
letterSpacing: 0,
|
2026-04-13 09:55:14 -07:00
|
|
|
),
|
|
|
|
|
titleLarge: TextStyle(
|
2026-04-14 14:33:48 -07:00
|
|
|
fontFamily: _fontFamily,
|
2026-04-13 09:55:14 -07:00
|
|
|
fontSize: 24,
|
|
|
|
|
fontWeight: FontWeight.w400,
|
2026-06-30 15:22:55 +01:00
|
|
|
height: 1.25,
|
|
|
|
|
letterSpacing: 0,
|
2026-04-13 09:55:14 -07:00
|
|
|
),
|
|
|
|
|
titleMedium: TextStyle(
|
2026-04-14 14:33:48 -07:00
|
|
|
fontFamily: _fontFamily,
|
2026-04-13 09:55:14 -07:00
|
|
|
fontSize: 20,
|
|
|
|
|
fontWeight: FontWeight.w500,
|
2026-06-30 15:22:55 +01:00
|
|
|
height: 1.3,
|
|
|
|
|
letterSpacing: 0,
|
2026-04-13 09:55:14 -07:00
|
|
|
),
|
|
|
|
|
titleSmall: TextStyle(
|
2026-04-14 14:33:48 -07:00
|
|
|
fontFamily: _fontFamily,
|
2026-04-13 09:55:14 -07:00
|
|
|
fontSize: 16,
|
|
|
|
|
fontWeight: FontWeight.w500,
|
2026-07-24 18:32:43 +01:00
|
|
|
height: _chatLineHeight,
|
2026-06-30 15:22:55 +01:00
|
|
|
letterSpacing: 0,
|
2026-04-13 09:55:14 -07:00
|
|
|
),
|
|
|
|
|
labelLarge: TextStyle(
|
2026-04-14 14:33:48 -07:00
|
|
|
fontFamily: _fontFamily,
|
2026-04-13 09:55:14 -07:00
|
|
|
fontSize: 16,
|
|
|
|
|
fontWeight: FontWeight.w500,
|
2026-06-30 15:22:55 +01:00
|
|
|
height: 1.2,
|
|
|
|
|
letterSpacing: 0,
|
2026-04-13 09:55:14 -07:00
|
|
|
),
|
|
|
|
|
labelMedium: TextStyle(
|
2026-04-14 14:33:48 -07:00
|
|
|
fontFamily: _fontFamily,
|
2026-04-13 09:55:14 -07:00
|
|
|
fontSize: 14,
|
|
|
|
|
fontWeight: FontWeight.w500,
|
2026-06-30 15:22:55 +01:00
|
|
|
height: 1.25,
|
|
|
|
|
letterSpacing: 0,
|
2026-04-13 09:55:14 -07:00
|
|
|
),
|
|
|
|
|
labelSmall: TextStyle(
|
2026-04-14 14:33:48 -07:00
|
|
|
fontFamily: _fontFamily,
|
2026-04-13 09:55:14 -07:00
|
|
|
fontSize: 11,
|
|
|
|
|
fontWeight: FontWeight.w500,
|
2026-06-30 15:22:55 +01:00
|
|
|
height: 1.2,
|
|
|
|
|
letterSpacing: 0,
|
2026-04-13 09:55:14 -07:00
|
|
|
),
|
2026-04-14 14:33:48 -07:00
|
|
|
bodyLarge: TextStyle(
|
|
|
|
|
fontFamily: _fontFamily,
|
|
|
|
|
fontSize: 16,
|
|
|
|
|
fontWeight: FontWeight.w400,
|
2026-07-24 18:32:43 +01:00
|
|
|
height: 20 / 16,
|
2026-06-30 15:22:55 +01:00
|
|
|
letterSpacing: 0,
|
2026-04-14 14:33:48 -07:00
|
|
|
),
|
2026-04-13 09:55:14 -07:00
|
|
|
bodyMedium: TextStyle(
|
2026-04-14 14:33:48 -07:00
|
|
|
fontFamily: _fontFamily,
|
2026-04-13 09:55:14 -07:00
|
|
|
fontSize: 14,
|
|
|
|
|
fontWeight: FontWeight.w400,
|
2026-06-30 15:22:55 +01:00
|
|
|
height: 1.3,
|
|
|
|
|
letterSpacing: 0,
|
2026-04-13 09:55:14 -07:00
|
|
|
),
|
2026-04-14 14:33:48 -07:00
|
|
|
bodySmall: TextStyle(
|
|
|
|
|
fontFamily: _fontFamily,
|
2026-07-26 23:05:57 +01:00
|
|
|
fontSize: 14,
|
2026-04-14 14:33:48 -07:00
|
|
|
fontWeight: FontWeight.w400,
|
2026-06-30 15:22:55 +01:00
|
|
|
height: 1.25,
|
|
|
|
|
letterSpacing: 0,
|
2026-04-14 14:33:48 -07:00
|
|
|
),
|
2026-04-13 09:55:14 -07:00
|
|
|
);
|