load runtime css before user options

This commit is contained in:
rhodes-b
2025-09-22 23:14:05 -05:00
parent e951dedc66
commit a584163306

View File

@@ -809,6 +809,9 @@ pub const Application = extern struct {
const writer = buf.writer(alloc);
try loadRuntimeCss414(config, &writer);
try loadRuntimeCss416(config, &writer);
const unfocused_fill: CoreConfig.Color = config.@"unfocused-split-fill" orelse config.background;
try writer.print(
@@ -847,9 +850,6 @@ pub const Application = extern struct {
, .{ .font_family = font_family });
}
try loadRuntimeCss414(config, &writer);
try loadRuntimeCss416(config, &writer);
// ensure that we have a sentinel
try writer.writeByte(0);