Revert "fix: tag text color"

This reverts commit e872b4753d.
This commit is contained in:
Rongjian Zhang 2022-10-06 15:08:04 +08:00
parent 826664e3f1
commit 9892d87f9b
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ class HexColorTag extends StatelessWidget {
name, name,
style: TextStyle( style: TextStyle(
color: c.computeLuminance() > 0.5 color: c.computeLuminance() > 0.5
? theme.colorBackground ? theme.colorText
: theme.colorText, : theme.colorBackground,
), ),
), ),
); );