koutil
Loading...
Searching...
No Matches
color16.h
Go to the documentation of this file.
1#ifndef KOUTIL_TERM_COLOR16_H
2#define KOUTIL_TERM_COLOR16_H
3
4#include "koutil/term/color.h"
5
7
8constexpr auto black = Color::from_id(30);
9constexpr auto red = Color::from_id(31);
10constexpr auto green = Color::from_id(32);
11constexpr auto yellow = Color::from_id(33);
12constexpr auto blue = Color::from_id(34);
13constexpr auto magenta = Color::from_id(35);
14constexpr auto cyan = Color::from_id(36);
15constexpr auto white = Color::from_id(37);
16constexpr auto default_color = Color::from_id(39);
18constexpr auto black_bright = Color::from_id(90);
19constexpr auto red_bright = Color::from_id(91);
20constexpr auto green_bright = Color::from_id(92);
21constexpr auto yellow_bright = Color::from_id(93);
22constexpr auto blue_bright = Color::from_id(94);
23constexpr auto magenta_bright = Color::from_id(95);
24constexpr auto cyan_bright = Color::from_id(96);
25constexpr auto white_bright = Color::from_id(97);
27}
28
29#endif
Definition color16.h:6
constexpr auto white
Definition color16.h:15
constexpr auto default_color
Definition color16.h:16
constexpr auto blue_bright
Definition color16.h:22
constexpr auto black
Definition color16.h:8
constexpr auto cyan
Definition color16.h:14
constexpr auto magenta_bright
Definition color16.h:23
constexpr auto cyan_bright
Definition color16.h:24
constexpr auto red_bright
Definition color16.h:19
constexpr auto yellow
Definition color16.h:11
constexpr auto black_bright
Definition color16.h:18
constexpr auto red
Definition color16.h:9
constexpr auto white_bright
Definition color16.h:25
constexpr auto magenta
Definition color16.h:13
constexpr auto green_bright
Definition color16.h:20
constexpr auto yellow_bright
Definition color16.h:21
constexpr auto green
Definition color16.h:10
constexpr auto blue
Definition color16.h:12
static constexpr Color from_id(channel_t id)
Creates a Color object from an ID value.
Definition color.h:88