2023-03-24 23:48:55 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class PageStyles {
|
|
|
|
static const h1 = TextStyle(fontSize: 26, fontWeight: FontWeight.bold);
|
|
|
|
static const h2 = TextStyle(fontSize: 22, fontWeight: FontWeight.bold);
|
|
|
|
static const h3 = TextStyle(fontSize: 20);
|
|
|
|
static const h5 = TextStyle(fontSize: 18);
|
2023-03-28 18:05:05 +02:00
|
|
|
static const h4 = TextStyle(fontSize: 15, fontStyle: FontStyle.italic);
|
2023-03-24 23:48:55 +01:00
|
|
|
}
|