From 60e0a1755b022eca7dd0b970667d77faf4cce9da Mon Sep 17 00:00:00 2001 From: Armand <4831c0@proton.me> Date: Thu, 11 Sep 2025 14:54:48 +0200 Subject: [PATCH] grades/{subjects}: fix text colors --- firka/lib/ui/phone/pages/home/home_grades_subject.dart | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/firka/lib/ui/phone/pages/home/home_grades_subject.dart b/firka/lib/ui/phone/pages/home/home_grades_subject.dart index 8f55503..c8091e9 100644 --- a/firka/lib/ui/phone/pages/home/home_grades_subject.dart +++ b/firka/lib/ui/phone/pages/home/home_grades_subject.dart @@ -101,15 +101,16 @@ class _HomeGradesSubjectScreen extends FirkaState { SizedBox( width: MediaQuery.of(context).size.width / 1.45, child: Text(grade.topic ?? grade.type.description!, - style: appStyle.fonts.B_14SB), + style: appStyle.fonts.B_14SB + .apply(color: appStyle.colors.textPrimary)), ), grade.mode?.description != null ? SizedBox( width: MediaQuery.of(context).size.width / 1.45, child: Text( grade.mode!.description!, - style: appStyle.fonts.B_14R - .apply(color: appStyle.colors.textPrimary), + style: appStyle.fonts.B_14R.apply( + color: appStyle.colors.textSecondary), ), ) : SizedBox(),