Zrythm
a highly automated and intuitive digital audio workstation
Toggle main menu visibility
Main Page
Related Pages
Topics
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
e
f
g
i
m
p
r
t
w
z
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
Typedefs
Enumerations
a
b
c
e
f
g
i
k
m
n
p
r
s
t
u
z
Enumerator
a
u
z
Macros
_
a
b
c
d
e
f
h
i
k
m
p
r
s
t
u
v
z
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
terminal.h
Go to the documentation of this file.
1
/*
2
* SPDX-FileCopyrightText: © 2020 Alexandros Theodotou <alex@zrythm.org>
3
*
4
* SPDX-License-Identifier: LicenseRef-ZrythmLicense
5
*/
6
13
#ifndef __UTILS_TERMINAL_H__
14
#define __UTILS_TERMINAL_H__
15
16
/* ANSI color codes */
17
#define TERMINAL_COLOR_RED "\x1b[31m"
18
#define TERMINAL_COLOR_GREEN "\x1b[32m"
19
#define TERMINAL_COLOR_YELLOW "\x1b[33m"
20
#define TERMINAL_COLOR_LIGHT_YELLOW "\x1b[93m"
21
#define TERMINAL_COLOR_BLUE "\x1b[34m"
22
#define TERMINAL_COLOR_LIGHTBLUE "\x1b[94m"
23
#define TERMINAL_COLOR_MAGENTA "\x1b[35m"
24
#define TERMINAL_COLOR_LIGHT_PURPLE "\x1b[95m"
25
#define TERMINAL_COLOR_CYAN "\x1b[36m"
26
27
#define TERMINAL_BOLD "\x1b[1m"
28
#define TERMINAL_ITALIC "\x1b[3m"
29
#define TERMINAL_UNDERLINE "\x1b[4m"
30
31
#define TERMINAL_RESET "\x1b[0m"
32
33
#endif
utils
terminal.h
Generated by
1.11.0