Files
simplex-chat/packages/simplex_app/lib/constants.dart
Muhammad Hamza 6704fc7cbb changes
2021-10-10 10:55:12 +05:00

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,
);