fix: tag text color

This commit is contained in:
Rongjian Zhang 2022-10-03 20:27:59 +08:00
parent df946c514a
commit e872b4753d
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.colorText ? theme.colorBackground
: theme.colorBackground, : theme.colorText,
), ),
), ),
); );