aboutsummaryrefslogtreecommitdiff
path: root/ttt.jai
diff options
context:
space:
mode:
Diffstat (limited to 'ttt.jai')
-rw-r--r--ttt.jai9
1 files changed, 5 insertions, 4 deletions
diff --git a/ttt.jai b/ttt.jai
index 33d5282..f0d22be 100644
--- a/ttt.jai
+++ b/ttt.jai
@@ -83,7 +83,8 @@ pos_y : int;
style_default := TUI.Style.{
background = TUI.Palette.BLACK,
foreground = TUI.Palette.WHITE,
- // use_default_background_color = true, TODO
+ use_default_background_color = true,
+ use_default_foreground_color = true,
};
style_selected := TUI.Style.{
@@ -95,14 +96,14 @@ style_selected_inverted := TUI.Style.{
background = TUI.Palette.BLACK,
foreground = TUI.Palette.CYAN,
bold = true,
- // use_default_background_color = true, TODO
+ use_default_background_color = true,
};
style_active := TUI.Style.{
background = TUI.Palette.BLACK,
foreground = TUI.Palette.BLUE,
bold = true,
- // use_default_background_color = true, TODO
+ use_default_background_color = true,
};
style_active_selected := TUI.Style.{
@@ -115,7 +116,7 @@ style_error := TUI.Style.{
background = TUI.Palette.BLACK,
foreground = TUI.Palette.RED,
bold = true,
- // use_default_background_color = true, TODO
+ use_default_background_color = true,
};
Layouts :: enum u8 {