VT100 Terminal App
Circle VT100 module documentation
Loading...
Searching...
No Matches
TColorPalette.h
Go to the documentation of this file.
1//------------------------------------------------------------------------------
2// Module: TColorPalette
3// Description: Shared color selection definitions for the VT100 renderer.
4// Author: R. Zuehlsdorff, ralf.zuehlsdorff@t-online.de
5// Created: 2026-01-18
6// License: MIT License (https://opensource.org/license/mit/)
7//------------------------------------------------------------------------------
8// Change Log:
9// 2026-01-18 R. Zuehlsdorff Initial creation
10//------------------------------------------------------------------------------
11
12#pragma once
13
14#include <circle/display.h>
15
26enum EColorSelection : unsigned int
27{
28 TerminalColorBlack = 0,
29 TerminalColorWhite = 1,
30 TerminalColorAmber = 2,
31 TerminalColorGreen = 3
32};
33
34using TRendererColor = CDisplay::TColor;