You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.8 KiB
81 lines
2.8 KiB
1 year ago
|
import 'package:flutter/material.dart';
|
||
|
import 'package:google_fonts/google_fonts.dart';
|
||
|
|
||
|
double defaultMargin = 30.0;
|
||
|
|
||
|
// Color primaryColor = Color(0xff66C5ECF);
|
||
|
// Color secondaryColor = Color(0xff38ABBE);
|
||
|
// Color alertColor = Color(0xffED6363);
|
||
|
// Color priceColor = Color(0xff2C96F1);
|
||
|
// Color backgroundColor1 = Color(0xff1F1D2B);
|
||
|
// Color backgroundColor2 = Color(0xff2B2937);
|
||
|
// Color backgroundColor3 = Color(0xff242231);
|
||
|
// Color backgroundColor4 = Color(0xff252836);
|
||
|
// Color backgroundColor5 = Color(0xff2B2844);
|
||
|
// Color backgroundColor6 = Color(0xffECEDEF);
|
||
|
// Color primaryTextColor = Color(0xffE1E1E1);
|
||
|
// Color secondaryTextColor = Color(0xff999999);
|
||
|
// Color subtitleTextColor = Color(0xff504F5E);
|
||
|
// Color subtitleColor = Color(0xff504F5E);
|
||
|
// Color transparanColor = Colors.transparent;
|
||
|
// Color blackColor = Color(0xff2E2E2E);
|
||
|
|
||
|
Color primaryColor = Color.fromARGB(255, 153, 64, 254);
|
||
|
Color secondaryColor = Color(0xFF38ABBE);
|
||
|
Color alertColor = Color(0xFFED6363);
|
||
|
Color priceColor = Color(0xFF2C96F1);
|
||
|
Color backgroundColor1 =
|
||
|
Color.fromARGB(255, 255, 255, 255); // Ubah ke warna biru atau putih
|
||
|
Color backgroundColor2 =
|
||
|
Color.fromARGB(255, 218, 218, 218); // Ubah ke warna biru atau putih
|
||
|
Color backgroundColor3 =
|
||
|
Color.fromARGB(255, 255, 255, 255); // Ubah ke warna biru atau putih
|
||
|
Color backgroundColor4 =
|
||
|
Color.fromARGB(255, 204, 204, 204); // Ubah ke warna biru atau putih
|
||
|
Color backgroundColor5 = Color(0xFF2B2844); // Ubah ke warna biru atau putih
|
||
|
Color backgroundColor6 = Color(0xFFECEDEF); // Ubah ke warna biru atau putih
|
||
|
Color primaryTextColor =
|
||
|
Color.fromARGB(255, 0, 0, 0); // Ubah ke warna biru atau putih
|
||
|
Color secondaryTextColor =
|
||
|
Color.fromARGB(255, 0, 0, 0); // Ubah ke warna biru atau putih
|
||
|
Color subtitleTextColor =
|
||
|
Color.fromARGB(255, 165, 165, 165); // Ubah ke warna biru atau putih
|
||
|
Color subtitleColor =
|
||
|
Color.fromARGB(255, 185, 185, 185); // Ubah ke warna biru atau putih
|
||
|
Color transparanColor = Colors.transparent; // Ubah ke warna biru atau putih
|
||
|
Color blackColor = Color.fromARGB(255, 0, 0, 0); // Ubah ke warna bir
|
||
|
|
||
|
TextStyle primaryTextStyle = GoogleFonts.poppins(
|
||
|
color: primaryTextColor,
|
||
|
);
|
||
|
|
||
|
TextStyle secondaryTextStyle = GoogleFonts.poppins(
|
||
|
color: secondaryTextColor,
|
||
|
);
|
||
|
|
||
|
TextStyle subtitleTextStyle = GoogleFonts.poppins(
|
||
|
color: subtitleTextColor,
|
||
|
);
|
||
|
|
||
|
TextStyle priceTextStyle = GoogleFonts.poppins(
|
||
|
color: priceColor,
|
||
|
);
|
||
|
|
||
|
TextStyle purpleTextStyle = GoogleFonts.poppins(
|
||
|
color: primaryColor,
|
||
|
);
|
||
|
|
||
|
TextStyle blackTextStyle = GoogleFonts.poppins(
|
||
|
color: blackColor,
|
||
|
);
|
||
|
|
||
|
TextStyle alertTextStyle = GoogleFonts.poppins(
|
||
|
color: alertColor,
|
||
|
);
|
||
|
|
||
|
FontWeight light = FontWeight.w300;
|
||
|
FontWeight regular = FontWeight.w400;
|
||
|
FontWeight medium = FontWeight.w500;
|
||
|
FontWeight semiBold = FontWeight.w600;
|
||
|
FontWeight bold = FontWeight.w700;
|