20 lines
743 B
Dart
20 lines
743 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:uae_stat/domain/use_cases/language.dart';
|
|
|
|
const Color economyColor = Color(0xFF90B0D5);
|
|
const Color socialColor = Color(0xFFAA8E83);
|
|
const Color environmentColor = Color(0xFF7DAFBC);
|
|
const Color environmentboldColor = Color(0xFF90B0D5);
|
|
TextStyle subtitleStyle(BuildContext context) {
|
|
return TextStyle(
|
|
fontFamily: context.translate('Roboto', 'NotoKufi'),
|
|
fontWeight: FontWeight.w400,
|
|
fontSize: 11 * 1.2,
|
|
color: const Color(0xFF8E8E8E),
|
|
);
|
|
}
|
|
TextStyle robotoRegular11(BuildContext context)
|
|
{return TextStyle(fontFamily: context.translate('Roboto', 'NotoKufi'),
|
|
fontWeight: FontWeight.w400,
|
|
fontSize: 11 * 1.1,color: Color(0xFF000000),);}
|