mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-05-01 23:06:53 +00:00
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,
|
|
);
|