diff options
| author | dam <dam@gudinoff> | 2024-05-05 00:31:46 +0100 |
|---|---|---|
| committer | dam <dam@gudinoff> | 2024-05-05 00:31:46 +0100 |
| commit | cb6c3caaa285bc8bd12c356d57bbfad86d70c0eb (patch) | |
| tree | beb732467422fea0edc55b1dd4069f06f632167a /modules/TUI/palette_24b.jai | |
| parent | b87e4a141da53cf903a0ab9fc9eb693c85a5c0b4 (diff) | |
| download | task-time-tracker-cb6c3caaa285bc8bd12c356d57bbfad86d70c0eb.tar.zst task-time-tracker-cb6c3caaa285bc8bd12c356d57bbfad86d70c0eb.zip | |
WIP : Cleanup TUI module scope.
Diffstat (limited to 'modules/TUI/palette_24b.jai')
| -rw-r--r-- | modules/TUI/palette_24b.jai | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/TUI/palette_24b.jai b/modules/TUI/palette_24b.jai index ea0191c..7545a0b 100644 --- a/modules/TUI/palette_24b.jai +++ b/modules/TUI/palette_24b.jai @@ -1,4 +1,10 @@ // https://www.ditig.com/publications/256-colors-cheat-sheet +Color_24b :: struct { + r: u8; + g: u8; + b: u8; +} + Palette :: struct #type_info_none { BLACK :: Color_24b.{0x00, 0x00, 0x00}; MAROON :: Color_24b.{0x80, 0x00, 0x00}; |
