2024-09-06 06:30:31 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class AppColors {
|
|
|
|
static const Color primary = contentColorCyan;
|
|
|
|
static const Color menuBackground = Color(0xFF090912);
|
|
|
|
static const Color itemsBackground = Color(0xFF1B2339);
|
|
|
|
static const Color pageBackground = Color(0xFF282E45);
|
|
|
|
static const Color mainTextColor1 = Colors.white;
|
|
|
|
static const Color mainTextColor2 = Colors.white70;
|
|
|
|
static const Color mainTextColor3 = Colors.white38;
|
|
|
|
static const Color mainGridLineColor = Colors.white10;
|
|
|
|
static const Color borderColor = Colors.white54;
|
|
|
|
static const Color gridLinesColor = Color(0x11FFFFFF);
|
|
|
|
|
|
|
|
static const Color contentColorBlack = Colors.black;
|
|
|
|
static const Color contentColorWhite = Colors.white;
|
|
|
|
static const Color contentColorBlue = Color(0xFF2196F3);
|
|
|
|
static const Color contentColorYellow = Color(0xFFFFC300);
|
|
|
|
static const Color contentColorOrange = Color(0xFFFF683B);
|
|
|
|
static const Color contentColorGreen = Color(0xFF3BFF49);
|
|
|
|
static const Color contentColorPurple = Color(0xFF6E1BFF);
|
|
|
|
static const Color contentColorPink = Color(0xFFFF3AF2);
|
|
|
|
static const Color contentColorRed = Color(0xFFE80054);
|
|
|
|
static const Color contentColorCyan = Color(0xFF50E4FF);
|
2024-12-03 05:59:45 +00:00
|
|
|
//background: #F3F3F3;
|
|
|
|
|
2024-12-19 05:21:33 +00:00
|
|
|
static const Color bgcolor = Color(0xFFF2F3F8);
|
|
|
|
static const Color oldbgcolor = Color.fromARGB(255, 222, 237, 247);
|
|
|
|
static const Color blueColor = Color.fromARGB(255, 0, 71, 132);
|
|
|
|
static const Color navcolor = Color(0x1e90ff);
|
|
|
|
static const Color tabbgColor = Color.fromARGB(255, 0, 112, 184);
|
|
|
|
static const Color bgtopic = Color.fromARGB(255, 210, 214, 222);
|
|
|
|
static const Color fonttopic = Color.fromARGB(255, 68, 68, 68);
|
|
|
|
static const Color btnGreenColor = Color.fromARGB(255, 46, 166, 100);
|
|
|
|
static const Color btnBlueColor = Color.fromARGB(255, 0, 102, 204);
|
|
|
|
static const Color homeCardBackgound =
|
|
|
|
Color.fromRGBO(229, 229, 229, 1); //rgba(243, 243, 243, 1)
|
|
|
|
static const Color onboardButtonColor = Color.fromRGBO(3, 126, 238, 1);
|
|
|
|
|
|
|
|
static const Color profilecard = Color.fromARGB(255, 4, 104, 198);
|
|
|
|
static Color cardtext = Colors.transparent;
|
|
|
|
|
2024-10-07 12:45:45 +00:00
|
|
|
List<Color> appcolors = [
|
|
|
|
contentColorYellow,
|
|
|
|
contentColorBlue,
|
|
|
|
contentColorOrange,
|
|
|
|
contentColorGreen,
|
|
|
|
contentColorPurple,
|
|
|
|
contentColorPink,
|
|
|
|
contentColorRed,
|
|
|
|
contentColorCyan
|
|
|
|
];
|
2024-09-06 06:30:31 +00:00
|
|
|
}
|