import 'package:flutter/material.dart'; /* Voyage Handbook - The open-source WikiVoyage reader Copyright (C) 2023 Matyáš Caras This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ 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); static const h4 = TextStyle(fontSize: 15, fontStyle: FontStyle.italic); }