26 lines
1.0 KiB
Dart
26 lines
1.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
|
|
Color primaryColor = Color(0xFF5142E6);
|
|
Color backgorundColor = Color(0xFF020518);
|
|
Color backgorundColor2 = Color(0xFFD9D9D9);
|
|
Color backgorundColor3 = Color(0xFFF6F8FB);
|
|
Color cancelColor = Color(0xFFE64242);
|
|
Color lunasColor = Color(0xFF13B123);
|
|
Color linkColor = Color(0xFF53C1F9);
|
|
Color textColor = Color(0xFFFFFFFF);
|
|
Color secondaryTextColor = Color(0xFF535152);
|
|
Color otherColor = Color(0xFF14193F);
|
|
|
|
TextStyle primaryTextStyle = GoogleFonts.poppins(color: Color(0xFF000000));
|
|
TextStyle secondaryTextStyle = GoogleFonts.poppins(color: textColor);
|
|
TextStyle otherTextStyle = GoogleFonts.poppins(color: otherColor);
|
|
TextStyle transparantTextStyle = GoogleFonts.poppins(color: secondaryTextColor);
|
|
TextStyle linkTextStyle = GoogleFonts.poppins(color: linkColor);
|
|
|
|
FontWeight light = FontWeight.w300;
|
|
FontWeight regular = FontWeight.w400;
|
|
FontWeight medium = FontWeight.w500;
|
|
FontWeight semibold = FontWeight.w600;
|
|
FontWeight bold = FontWeight.w700;
|