32 lines
1.1 KiB
Dart
32 lines
1.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
|
|
Color primaryColor = const Color(0xff1B5BFD);
|
|
Color secondaryColor = const Color(0xffE6E6E6);
|
|
Color textSideColor = const Color(0xff677278);
|
|
Color rendahColor = const Color(0xff198A16);
|
|
Color sedangColor = const Color(0xffFFE500);
|
|
Color tinggiColor = const Color(0xffEB0606);
|
|
Color whiteColor = const Color(0xffFFFFFF);
|
|
Color blackColor = const Color(0xff000000);
|
|
Color dialogColor = const Color(0xff5C84EB);
|
|
|
|
TextStyle robotoBesarPutih =
|
|
GoogleFonts.roboto(fontSize: 20.sp, color: whiteColor);
|
|
|
|
TextStyle robotoBesarHitam =
|
|
GoogleFonts.roboto(fontSize: 20.sp, color: blackColor);
|
|
|
|
TextStyle robotoSedangPutih =
|
|
GoogleFonts.roboto(fontSize: 16, color: whiteColor);
|
|
|
|
TextStyle robotoSedangHitam =
|
|
GoogleFonts.roboto(fontSize: 16, color: blackColor);
|
|
|
|
TextStyle robotoKecilPutih =
|
|
GoogleFonts.roboto(fontSize: 14, color: whiteColor);
|
|
|
|
TextStyle robotoKecilHitam =
|
|
GoogleFonts.roboto(fontSize: 14, color: blackColor);
|