17 lines
474 B
Dart
17 lines
474 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
|
|
Color primaryColor = Color(0xFF020518);
|
|
Color backgroundColor = Color(0xFFF6F8FB);
|
|
|
|
TextStyle primaryTextStyle = GoogleFonts.poppins(
|
|
color: primaryColor,
|
|
);
|
|
TextStyle secondTextStyle = GoogleFonts.poppins(
|
|
color: Colors.white,
|
|
);
|
|
|
|
FontWeight reguler = FontWeight.w300;
|
|
FontWeight medium = FontWeight.w500;
|
|
FontWeight semiBold = FontWeight.w700;
|
|
FontWeight Bold = FontWeight.w900; |