typo on the rgb...

This commit is contained in:
Mitchell Hashimoto
2022-05-12 20:56:02 -07:00
parent 2be8721e54
commit db3f760a1d

View File

@ -145,7 +145,7 @@ pub fn setAttribute(self: *Terminal, attr: sgr.Attribute) !void {
self.cursor.pen.fg = .{
.r = rgb.r,
.g = rgb.g,
.b = rgb.g,
.b = rgb.b,
};
},
@ -153,7 +153,7 @@ pub fn setAttribute(self: *Terminal, attr: sgr.Attribute) !void {
self.cursor.pen.bg = .{
.r = rgb.r,
.g = rgb.g,
.b = rgb.g,
.b = rgb.b,
};
},