Skip to content

Commit

Permalink
Stop using brightblack color by default (UX problems on dark bg) (#797)
Browse files Browse the repository at this point in the history
Fixes #789.
  • Loading branch information
dbarnett authored Oct 2, 2024
1 parent 16909a9 commit bf57778
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcalcli/gcal.py
Original file line number Diff line number Diff line change
Expand Up @@ -1230,7 +1230,7 @@ def ListAllCalendars(self):
name = f'{name} (ignored)'
self.printer.msg(
_format % (cal['accessRole'], name),
self._calendar_color(cal) if not ignored else 'brightblack'
self._calendar_color(cal),
)

def _display_queried_events(self, start, end, search=None,
Expand Down

0 comments on commit bf57778

Please sign in to comment.