Terminal: Add alpha channel to colors

This doesn't do anything yet, but will when I add transparency support
for WindowServer
This commit is contained in:
2024-09-12 19:34:25 +03:00
parent bf01b935bd
commit 43e88c0ae0
2 changed files with 33 additions and 30 deletions

View File

@@ -70,6 +70,6 @@ private:
uint8_t m_utf8_bytes[4] { };
Cursor m_saved_cursor { 0, 0 };
uint32_t m_fg_color { 0xFFFFFF };
uint32_t m_bg_color { 0x000000 };
uint32_t m_fg_color { 0 };
uint32_t m_bg_color { 0 };
};