21 lines
739 B
Dart
21 lines
739 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
const Color economyColor = Color(0xFF90B0D5);
|
|
const Color socialColor = Color(0xFFAA8E83);
|
|
const Color environmentColor = Color(0xFF7DAFBC);
|
|
const Color environmentboldColor = Color(0xFF90B0D5);
|
|
const TextStyle subtitleStyle = TextStyle(
|
|
fontFamily: 'Roboto', // Font family set to Roboto
|
|
fontWeight: FontWeight.w400, // Regular weight (w400)
|
|
// fontSize: 11,
|
|
fontSize: 11 * 1.2, // Increase by 20%
|
|
color: Color(0xFF8E8E8E) // Font size 11
|
|
);
|
|
const TextStyle robotoRegular11 = TextStyle(
|
|
fontFamily: 'Roboto', // Font family set to Roboto
|
|
fontWeight: FontWeight.w400, // Regular weight (w400)
|
|
fontSize: 11 * 1.1,
|
|
color: Color(0xFF000000) // Font size 11
|
|
|
|
);
|