From e43cc90e765a1743298da1e15402c8dc547406c3 Mon Sep 17 00:00:00 2001 From: Chris Bobbe Date: Sun, 19 May 2024 19:10:37 -0700 Subject: [PATCH] code_block [nfc]: Add TODO(#95) to follow web in syntax highlighting Related: #95 --- lib/widgets/code_block.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/widgets/code_block.dart b/lib/widgets/code_block.dart index f650a21cc8..fcf4390e3b 100644 --- a/lib/widgets/code_block.dart +++ b/lib/widgets/code_block.dart @@ -5,6 +5,8 @@ import '../model/code_block.dart'; // Highlighted code block styles adapted from: // https://github.com/zulip/zulip/blob/213387249e7ba7772084411b22d8cef64b135dd0/web/styles/pygments.css +// TODO(#95) update light-theme colors to match web, then follow web for dark + // .hll { background-color: hsl(60deg 100% 90%); } final _kCodeBlockStyleHll = TextStyle(backgroundColor: const HSLColor.fromAHSL(1, 60, 1, 0.90).toColor());