33 lines
839 B
Dart
33 lines
839 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_samples/styles/colors.dart';
|
|
|
|
@immutable
|
|
class AppStyle {
|
|
final AppColors colors = AppColors();
|
|
final TextStyle normalText = const TextStyle(
|
|
fontSize: 14,
|
|
color: Color(0xFF333333),
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
final TextStyle grayText = const TextStyle(
|
|
fontSize: 12,
|
|
color: Color(0xFF666666),
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
final TextStyle tagText = const TextStyle(
|
|
fontSize: 12,
|
|
color: Color(0xFFFFFFFF),
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
final TextStyle redText = const TextStyle(
|
|
fontSize: 14,
|
|
color: Color.fromARGB(255, 225, 8, 8),
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
final TextStyle headerText = const TextStyle(
|
|
fontSize: 16,
|
|
color: Color(0xFF333333),
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
}
|