TF-3410 Update color of quotas view
This commit is contained in:
@@ -244,6 +244,7 @@ extension AppColor on Color {
|
||||
static const steelGray400 = Color(0xFF818C99);
|
||||
static const blue700 = Color(0xFF208BFF);
|
||||
static const blue100 = Color(0xFFDFEEFF);
|
||||
static const blue400 = Color(0xFF80BDFF);
|
||||
|
||||
static const mapGradientColor = [
|
||||
[Color(0xFF21D4FD), Color(0xFFB721FF)],
|
||||
|
||||
@@ -65,7 +65,7 @@ extension QuotasExtensions on Quota {
|
||||
} else if (isWarnLimitReached) {
|
||||
return AppColor.colorBackgroundQuotasWarning;
|
||||
} else {
|
||||
return AppColor.primaryColor;
|
||||
return AppColor.blue400;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import 'package:core/presentation/extensions/color_extension.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_svg/flutter_svg.dart';
|
||||
import 'package:get/get.dart';
|
||||
@@ -43,6 +44,7 @@ class QuotasView extends GetWidget<QuotasController> {
|
||||
controller.imagePaths.icQuotas,
|
||||
width: QuotasViewStyles.iconSize,
|
||||
height: QuotasViewStyles.iconSize,
|
||||
colorFilter: AppColor.steelGray400.asFilter(),
|
||||
fit: BoxFit.fill,
|
||||
),
|
||||
const SizedBox(width: QuotasViewStyles.iconPadding),
|
||||
|
||||
Reference in New Issue
Block a user