ModernMemoires/lib/utils/definitions/style_guide.dart

14 lines
294 B
Dart
Raw Normal View History

2024-01-08 19:34:48 +01:00
import 'package:flutter/material.dart';
class AppStyle {
// Colors
static const Color backgroundColor = Color(0xFFEEEEEE);
// Text Sizes
static const double textSmaller = 16.0;
static const double headline = 22.0;
static const double text = 16.0;
// Add other styles as needed
}