summaryrefslogtreecommitdiff
path: root/escape.ansi.h
diff options
context:
space:
mode:
authorjStmaX! <maxwasmailed@proton.me>2025-10-09 16:18:55 +0200
committerGitHub <noreply@github.com>2025-10-09 16:18:55 +0200
commitc86c8cda6c5462ceb6b2f27ec8aca9af7799c66d (patch)
tree5d5686a943cec851233f520344cc146852ae75bc /escape.ansi.h
parent75d15d28657559382bcfe13244e9d2a87a9b24f0 (diff)
fill with dihh
Diffstat (limited to 'escape.ansi.h')
-rw-r--r--escape.ansi.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/escape.ansi.h b/escape.ansi.h
deleted file mode 100644
index c008b56..0000000
--- a/escape.ansi.h
+++ /dev/null
@@ -1,25 +0,0 @@
-// escape.ansi.h (escape.ANSI.sux)
-#pragma once
-
-#include <string>
-
-const std::string black = "\033[30m";
-const std::string red = "\033[31m";
-const std::string green = "\033[32m";
-const std::string yellow = "\033[33m";
-const std::string blue = "\033[34m";
-const std::string magenta = "\033[35m";
-const std::string cyan = "\033[36m";
-const std::string white = "\033[37m";
-const std::string def = "\033[0m";
-
-/* example syntax:
-#include <iostream>
-#include "escape.ansi.h"
-
-int main() {
- std::cout << red << "this text is red, crazy scheisse!";
-}
-
--> this is stupid but if you know a better way idk just tell me or drop a PR i will probably just merge it
-*/