11// A countdown timer and buttons for a session.
22//
3- // Time-stamp: <Thursday 2026-03-12 12:28:10 +1100 Graham Williams>
3+ // Time-stamp: <Thursday 2026-03-12 13:26:16 +1100 Graham Williams>
44//
55/// Copyright (C) 2024-2026, Togaware Pty Ltd
66///
@@ -398,7 +398,7 @@ circle indicates an active session.
398398 },
399399 fontWeight: FontWeight .bold,
400400 backgroundColor: startBackgroundColor,
401- textColor: _sessionType == 'bell' ? Colors .blue : null ,
401+ textColor: _sessionType == 'bell' ? appSelectedColor : null ,
402402 );
403403
404404 final pauseResumeButton = AppButton (
@@ -450,7 +450,7 @@ three dings. The blue progress circle indicates an active session.
450450 onPressed: _intro,
451451 fontWeight: FontWeight .bold,
452452 backgroundColor: introBackgroundColor,
453- textColor: _sessionType == 'intro' ? Colors .blue : null ,
453+ textColor: _sessionType == 'intro' ? appSelectedColor : null ,
454454 );
455455
456456 final guidedButton = AppButton (
@@ -469,12 +469,11 @@ audio may take a little time to download for the Web version.
469469 onPressed: _guided,
470470 fontWeight: FontWeight .bold,
471471 backgroundColor: guidedBackgroundColor,
472- textColor: _sessionType == 'guided' ? Colors .blue : null ,
472+ textColor: _sessionType == 'guided' ? appSelectedColor : null ,
473473 );
474474
475475 ////////////////////////////////////
476476 // DURATION CHOICE
477- ////////////////////////////////////
478477
479478 // 20260312 gjw The early versions used specific duration choices. From
480479 // 1.8.10 we allowed any choice between 1 and 30 minutes. So
@@ -534,10 +533,6 @@ audio may take a little time to download for the Web version.
534533 ],
535534 );
536535
537- ////////////////////////////////////
538- // RETURN
539- ////////////////////////////////////
540-
541536 final timerDisplay = AppCircularCountDownTimer (
542537 duration: _duration,
543538 controller: _controller,
0 commit comments