diff options
| -rw-r--r-- | ttt.jai | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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 { |
