defaults static method
Returns the Ghostty default terminal style.
Implementation
static VtStyle defaults() {
final native = calloc<bindings.GhosttyStyle>();
try {
native.ref.size = ffi.sizeOf<bindings.GhosttyStyle>();
bindings.ghostty_style_default(native);
return VtStyle.fromNative(native.ref);
} finally {
calloc.free(native);
}
}