21 lines
381 B
Dart
21 lines
381 B
Dart
import 'package:flutter/material.dart';
|
|
import 'color.dart';
|
|
|
|
extension TextStyleExtension on TextStyle {
|
|
toLight() {
|
|
return copyWith(color: color?.toLight());
|
|
}
|
|
|
|
toLighter() {
|
|
return copyWith(color: color?.toLighter());
|
|
}
|
|
|
|
|
|
toSoftBold() {
|
|
return copyWith(fontWeight: FontWeight.w500);
|
|
}
|
|
|
|
toBold() {
|
|
return copyWith(fontWeight: FontWeight.bold);
|
|
}
|
|
} |