Zrythm
a highly automated and intuitive digital audio workstation
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