6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit 9de93e90

AuthorMikkel Thygesen<mth@dwarf.dk>
Date2025-01-30 14:07:40 +0100
553: updated colors

Changed files

.../lib/home/components/practical_information_button.dart      | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

Diff

diff --git a/comwell_key_app/lib/home/components/practical_information_button.dart b/comwell_key_app/lib/home/components/practical_information_button.dart
index f5c2dc15..c6ce2c13 100644
--- a/comwell_key_app/lib/home/components/practical_information_button.dart
+++ b/comwell_key_app/lib/home/components/practical_information_button.dart
@@ -22,9 +22,9 @@ class PracticalInformationButton extends StatelessWidget {
borderRadius: const BorderRadius.all(Radius.circular(15)),
onTap: () => onClick(),
child: Ink(
- decoration: const BoxDecoration(
- borderRadius: BorderRadius.all(Radius.circular(16)),
- color: Color(0xFFF9F6F2),
+ decoration: BoxDecoration(
+ borderRadius: const BorderRadius.all(Radius.circular(16)),
+ color: sandColor[10],
),
child: Padding(
padding: const EdgeInsets.all(16),
@@ -33,9 +33,9 @@ class PracticalInformationButton extends StatelessWidget {
children: [
Expanded(
child: Container(
- decoration: const BoxDecoration(
+ decoration: BoxDecoration(
shape: BoxShape.circle,
- color: colorSecondary,
+ color: sandColor[40],
),
child: Padding(
padding: const EdgeInsets.all(8.0),