From 65d015bd0d493163fa129e1391fdf74b5276b287 Mon Sep 17 00:00:00 2001 From: Aqua Date: Sat, 6 Dec 2025 23:59:34 +0530 Subject: [PATCH 1/2] theme: set dark bg-message-regular to #1D1D1D --- lib/widgets/theme.dart | 2 +- pubspec.lock | 24 ++++++++---------------- 2 files changed, 9 insertions(+), 17 deletions(-) diff --git a/lib/widgets/theme.dart b/lib/widgets/theme.dart index 18540139d0..cb95c78c00 100644 --- a/lib/widgets/theme.dart +++ b/lib/widgets/theme.dart @@ -246,7 +246,7 @@ class DesignVariables extends ThemeExtension { bgCounterUnread: const Color(0xff666699).withValues(alpha: 0.37), bgMenuButtonActive: Colors.black.withValues(alpha: 0.2), bgMenuButtonSelected: Colors.black.withValues(alpha: 0.25), - bgMessageRegular: const HSLColor.fromAHSL(1, 0, 0, 0.11).toColor(), + bgMessageRegular: const Color(0xff1d1d1d), bgTopBar: const Color(0xff242424), borderBar: const Color(0xffffffff).withValues(alpha: 0.1), borderMenuButtonSelected: Colors.white.withValues(alpha: 0.1), diff --git a/pubspec.lock b/pubspec.lock index 914bfa51f7..bb65e9253a 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -622,14 +622,6 @@ packages: url: "https://pub.dev" source: hosted version: "1.0.5" - js: - dependency: transitive - description: - name: js - sha256: "53385261521cc4a0c4658fd0ad07a7d14591cf8fc33abbceae306ddb974888dc" - url: "https://pub.dev" - source: hosted - version: "0.7.2" json_annotation: dependency: "direct main" description: @@ -698,18 +690,18 @@ packages: dependency: transitive description: name: matcher - sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2 + sha256: "12956d0ad8390bbcc63ca2e1469c0619946ccb52809807067a7020d57e647aa6" url: "https://pub.dev" source: hosted - version: "0.12.17" + version: "0.12.18" material_color_utilities: dependency: transitive description: name: material_color_utilities - sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec + sha256: "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b" url: "https://pub.dev" source: hosted - version: "0.11.1" + version: "0.13.0" meta: dependency: transitive description: @@ -1079,10 +1071,10 @@ packages: dependency: "direct dev" description: name: test - sha256: "8f0eb7fa76b7d05a4f3707e0dbd581babef5b0915ca508b757cf15d0cabb56cb" + sha256: "77cc98ea27006c84e71a7356cf3daf9ddbde2d91d84f77dbfe64cf0e4d9611ae" url: "https://pub.dev" source: hosted - version: "1.27.0" + version: "1.28.0" test_api: dependency: "direct dev" description: @@ -1095,10 +1087,10 @@ packages: dependency: transitive description: name: test_core - sha256: bad9916601a4f2ef6e4dbc466fb712e4b42cf4917c3fd428b018f51984fce13b + sha256: f1072617a6657e5fc09662e721307f7fb009b4ed89b19f47175d11d5254a62d4 url: "https://pub.dev" source: hosted - version: "0.6.13" + version: "0.6.14" timing: dependency: transitive description: From 0380d33bef7d09577cf9c81ad0f03f7ba81897c0 Mon Sep 17 00:00:00 2001 From: Aqua Date: Sun, 7 Dec 2025 00:42:43 +0530 Subject: [PATCH 2/2] lightbox: Use ZulipIcons.copy for the "Copy link" button. --- lib/widgets/lightbox.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widgets/lightbox.dart b/lib/widgets/lightbox.dart index 45e2b4b7f4..8573ff9d7b 100644 --- a/lib/widgets/lightbox.dart +++ b/lib/widgets/lightbox.dart @@ -104,7 +104,7 @@ class _CopyLinkButton extends StatelessWidget { final zulipLocalizations = ZulipLocalizations.of(context); return IconButton( tooltip: zulipLocalizations.lightboxCopyLinkTooltip, - icon: const Icon(Icons.copy), + icon: const Icon(ZulipIcons.copy), onPressed: () async { PlatformActions.copyWithPopup(context: context, successContent: Text(zulipLocalizations.successLinkCopied),