Skip to content

Commit

Permalink
text and message coloring
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvris committed Sep 14, 2024
1 parent 3e47542 commit 7437924
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions data/client.kv
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
theme_style: "Dark" # Light/Dark
primary_palette: "Green" # Many options
<MDLabel>:
color: "FFFFFF"
color: self.theme_cls.primaryColor
<TooltipLabel>:
adaptive_height: True
font_size: dp(20)
Expand All @@ -28,7 +28,7 @@
size_hint: 1, None
canvas.before:
Color:
rgba: (.0, 0.9, .1, .3) if self.selected else (0,0,0,0)
rgba: (.0, 0.9, .1, .3) if self.selected else self.theme_cls.surfaceContainerLowColor
Rectangle:
size: self.size
pos: self.pos
Expand All @@ -50,7 +50,7 @@
<HintLabel>:
canvas.before:
Color:
rgba: (.0, 0.9, .1, .3) if self.selected else (0.4, 0.4, 0.4, 0.1) if self.striped else (0.0, 0.0, 0.0, 0)
rgba: (.0, 0.9, .1, .3) if self.selected else self.theme_cls.surfaceContainerHighColor if self.striped else self.theme_cls.surfaceContainerLowColor
Rectangle:
size: self.size
pos: self.pos
Expand Down

0 comments on commit 7437924

Please sign in to comment.