service 2-5-26-2
This commit is contained in:
@@ -8,6 +8,8 @@ class BoxName {
|
||||
static const String jwt = "jwt";
|
||||
static const String fingerPrint = "fingerPrint";
|
||||
static const String deviceFingerprint = "deviceFingerprint";
|
||||
static const String hmac = "hmac";
|
||||
|
||||
|
||||
static const String payMobApikey = "payMobApikey";
|
||||
static const String employeename = "employeename";
|
||||
|
||||
@@ -1,20 +1,25 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class AppColor {
|
||||
static const Color primaryColor = Color(0xFF1DA1F2);
|
||||
static const Color writeColor = Color(0xff222359);
|
||||
|
||||
static const Color primaryColor = Color(0xFF2563EB); // Modern Blue
|
||||
static const Color primaryLight = Color(0xFFDBEAFE);
|
||||
static const Color writeColor = Color(0xFF1E293B); // Darker Slate
|
||||
static const Color surfaceColor = Color(0xFFF8FAFC);
|
||||
|
||||
static const Color bronze = Color(0xFFCD7F32);
|
||||
static const Color goldenBronze = Color(0xFFB87333); // Golden bronze color
|
||||
static const Color goldenBronze = Color(0xFFB87333);
|
||||
static const Color gold = Color(0xFFD4AF37);
|
||||
|
||||
static const Color secondaryColor = Colors.white;
|
||||
static const Color accentColor = Colors.grey;
|
||||
static const Color twitterColor = Color(0xFF1DA1F2); // Twitter blue
|
||||
static const Color greyColor = Colors.grey;
|
||||
static const Color redColor = Color(0xFFEA4335); // Google Red
|
||||
static const Color greenColor = Color(0xFF34A853); // Google Green
|
||||
static const Color blueColor = Color(0xFF1DA1F2); // Google Blue
|
||||
static const Color yellowColor = Color(0xFFFBBC05); // Google Yellow
|
||||
static Color deepPurpleAccent =
|
||||
const Color.fromARGB(255, 123, 76, 254).withOpacity(0.3);
|
||||
static const Color accentColor = Color(0xFF64748B); // Slate Grey
|
||||
static const Color greyColor = Color(0xFF94A3B8);
|
||||
|
||||
static const Color redColor = Color(0xFFEF4444);
|
||||
static const Color greenColor = Color(0xFF10B981);
|
||||
static const Color blueColor = Color(0xFF3B82F6);
|
||||
static const Color yellowColor = Color(0xFFF59E0B);
|
||||
|
||||
static Color deepPurpleAccent = const Color(0xFF7C3AED);
|
||||
static Color glassEffect = Colors.white.withOpacity(0.1);
|
||||
}
|
||||
|
||||
|
||||
@@ -40,31 +40,26 @@ class AppStyle {
|
||||
color: AppColor.writeColor,
|
||||
fontFamily: 'digit');
|
||||
|
||||
static BoxDecoration boxDecoration = const BoxDecoration(
|
||||
static BoxDecoration boxDecoration = BoxDecoration(
|
||||
boxShadow: [
|
||||
BoxShadow(
|
||||
color: AppColor.accentColor, blurRadius: 5, offset: Offset(2, 4)),
|
||||
BoxShadow(
|
||||
color: AppColor.accentColor, blurRadius: 5, offset: Offset(-2, -2))
|
||||
color: AppColor.accentColor.withValues(alpha: 0.1),
|
||||
blurRadius: 10,
|
||||
offset: const Offset(0, 4)),
|
||||
],
|
||||
color: AppColor.secondaryColor,
|
||||
borderRadius: BorderRadius.all(
|
||||
Radius.elliptical(15, 30),
|
||||
));
|
||||
static BoxDecoration boxDecoration1 = const BoxDecoration(
|
||||
borderRadius: BorderRadius.circular(16));
|
||||
|
||||
static BoxDecoration boxDecoration1 = BoxDecoration(
|
||||
boxShadow: [
|
||||
BoxShadow(
|
||||
color: Color.fromARGB(255, 237, 230, 230),
|
||||
blurRadius: 5,
|
||||
offset: Offset(2, 4)),
|
||||
BoxShadow(
|
||||
color: Color.fromARGB(255, 242, 237, 237),
|
||||
blurRadius: 5,
|
||||
offset: Offset(-2, -2))
|
||||
color: Colors.black.withValues(alpha: 0.05),
|
||||
blurRadius: 15,
|
||||
offset: const Offset(0, 8)),
|
||||
],
|
||||
color: AppColor.secondaryColor,
|
||||
borderRadius: BorderRadius.all(
|
||||
Radius.elliptical(15, 30),
|
||||
),
|
||||
borderRadius: BorderRadius.circular(20),
|
||||
);
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user