Skip to content

Commit

Permalink
Change card color
Browse files Browse the repository at this point in the history
  • Loading branch information
zkovari committed Oct 3, 2024
1 parent 3cc0754 commit 782834a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/python/plotlyst/view/widget/cards.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def _setStyleSheet(self, selected: bool = False):
}}''')

def _bgColor(self, selected: bool = False) -> str:
return '#dec3c3' if selected else '#f9f4f4'
return '#dec3c3' if selected else '#f3e8e8'

def _borderSize(self, selected: bool = False) -> int:
return 4 if selected else 2
Expand Down

0 comments on commit 782834a

Please sign in to comment.