25 lines
519 B
Dart
25 lines
519 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
// colors
|
|
const kPrimaryColor = Color(0xff062d56);
|
|
const kSecondaryColor = Color(0xff07b4b9);
|
|
|
|
// text styles
|
|
const TextStyle kHeadingStyle = TextStyle(
|
|
fontSize: 28.0,
|
|
fontWeight: FontWeight.bold,
|
|
letterSpacing: 1.3,
|
|
color: kPrimaryColor,
|
|
);
|
|
|
|
const TextStyle kMediumHeadingStyle = TextStyle(
|
|
fontSize: 20.0,
|
|
fontWeight: FontWeight.w500,
|
|
color: kPrimaryColor,
|
|
);
|
|
|
|
const TextStyle kSmallHeadingStyle = TextStyle(
|
|
fontSize: 18.0,
|
|
fontWeight: FontWeight.w500,
|
|
);
|