ability to set selection fg/bg colors

This commit is contained in:
Mitchell Hashimoto
2022-11-20 20:27:12 -08:00
parent c2e2f69989
commit 2e74b7af9e
5 changed files with 49 additions and 19 deletions

View File

@@ -3,6 +3,10 @@
const font = @import("../font/main.zig");
const renderer = @import("../renderer.zig");
const Window = @import("../Window.zig");
const Config = @import("../config.zig").Config;
/// The app configuration.
config: *const Config,
/// The font group that should be used.
font_group: *font.GroupCache,