मैं लिनक्स टर्मिनल को रंगीन टेक्स्ट कैसे आउटपुट करूं?


300

मैं लिनक्स टर्मिनल को रंगीन वर्ण कैसे प्रिंट करूं जो इसका समर्थन करता है?

मैं कैसे बताऊं कि क्या टर्मिनल रंग कोड का समर्थन करता है?


9
यह निर्धारित करने के लिए कि टर्मिनल क्या सक्षम है, टर्मिनल क्षमताओं डेटाबेस की जाँच करें। देखते हैं termcap(5)
११:१०

1
बेझिझक एक कोड स्निपेट पर एक नज़र डालें जो मैंने यहां डाला है । यह एक छोटा उपकरण है जो कुछ मैक्रोज़ की मदद से अपने आउटपुट को रंग देता है।
उपकथा

7
"समाप्त डेटाबेस चरित्र-कक्ष टर्मिनलों और प्रिंटर की क्षमताओं का वर्णन करने के लिए एक अप्रचलित सुविधा है। यह केवल पुराने कार्यक्रमों के साथ बनाए रखा जाता है; नए लोगों को terminfo(5)डेटाबेस और संबंधित पुस्तकालयों का उपयोग करना चाहिए ।" -termcap(5)
ऑरेंजडॉग

आप आसानी से टर्मिनेटर
रूडी

1
यदि आप रंग मुद्रण के साथ कुछ उन्नत सामान करना चाहते हैं, तो मेरा सुझाव है कि आप इस लेख को पढ़ें । मुझे यह बहुत मददगार लगा
9

जवाबों:


408

आपको एएनएसआई रंग कोड आउटपुट करने की आवश्यकता है । ध्यान दें कि सभी टर्मिनल इसका समर्थन नहीं करते हैं; यदि रंग अनुक्रम समर्थित नहीं हैं, तो कचरा दिखाई देगा।

उदाहरण:

 cout << "\033[1;31mbold red text\033[0m\n";

यहाँ, \033ESC वर्ण, ASCII 27 है। इसके [बाद शून्य और उससे अधिक संख्याओं को अलग किया जाता है ;, और अंत में अक्षर को m। संख्या उस बिंदु से स्विच करने के लिए रंग और प्रारूप का वर्णन करती है।

अग्रभूमि और पृष्ठभूमि रंग के लिए कोड हैं:

         foreground background
black        30         40
red          31         41
green        32         42
yellow       33         43
blue         34         44
magenta      35         45
cyan         36         46
white        37         47

इसके अतिरिक्त, आप इनका उपयोग कर सकते हैं:

reset             0  (everything back to normal)
bold/bright       1  (often a brighter shade of the same colour)
underline         4
inverse           7  (swap foreground and background colours)
bold/bright off  21
underline off    24
inverse off      27

अन्य के लिए विकिपीडिया पर तालिका देखें , कम व्यापक रूप से समर्थित कोड।


यह निर्धारित करने के लिए कि आपका टर्मिनल रंग अनुक्रमों का समर्थन करता है, TERMपर्यावरण चर का मान पढ़ें । यह प्रयोग किया जाता है विशेष रूप से टर्मिनल प्रकार निर्दिष्ट करना चाहिए (उदाहरण के लिए vt100, gnome-terminal, xterm, screen, ...)। फिर टर्मो डेटाबेस में देखें ; colorsक्षमता की जाँच करें ।


15
यह BBS पर मधुमक्खी का घुटना था ...
Potatoswatter

11
क्या करता m/ करती है?
निप्पोंसे

4
@nipponese \033[और mANSI रंग कोड के लिए भागने के क्रम की शुरुआत और अंत को चिह्नित करें। Ref: en.wikipedia.org/wiki/ANSI_escape_code#CSI_codes
thameera

20
मैं इसका उपयोग "मैनिपुलेटर्स" को परिभाषित करने में करता हूं, जैसे const std::string red("\033[0;31m");या const std::string reset("\033[0m");। फिर, मैं बस लिख सकता हूँ cout << red << "red text" << reset << endl;
डैनियल लैंगर

4
मैं इसे रंगों के दृश्य के लिए देखूंगा
Liran Funaro

97

मूल बातें

मैंने एक C ++ क्लास लिखा है जिसका उपयोग आउटपुट के अग्रभूमि और पृष्ठभूमि के रंग को सेट करने के लिए किया जा सकता है। यह नमूना कार्यक्रम मुद्रण के एक उदाहरण के रूप में कार्य करता है This ->word<- is red.और इसे प्रारूपित करता है ताकि अग्रभूमि का रंग wordलाल हो।

#include "colormod.h" // namespace Color
#include <iostream>
using namespace std;
int main() {
    Color::Modifier red(Color::FG_RED);
    Color::Modifier def(Color::FG_DEFAULT);
    cout << "This ->" << red << "word" << def << "<- is red." << endl;
}

स्रोत

#include <ostream>
namespace Color {
    enum Code {
        FG_RED      = 31,
        FG_GREEN    = 32,
        FG_BLUE     = 34,
        FG_DEFAULT  = 39,
        BG_RED      = 41,
        BG_GREEN    = 42,
        BG_BLUE     = 44,
        BG_DEFAULT  = 49
    };
    class Modifier {
        Code code;
    public:
        Modifier(Code pCode) : code(pCode) {}
        friend std::ostream&
        operator<<(std::ostream& os, const Modifier& mod) {
            return os << "\033[" << mod.code << "m";
        }
    };
}

उन्नत

आप कक्षा में अतिरिक्त सुविधाएँ जोड़ना चाह सकते हैं। उदाहरण के लिए, रंग मैजेंटा और यहां तक ​​कि बोल्डफेस जैसी शैलियों को जोड़ना संभव है । ऐसा करने के लिए, Codeएन्यूमरेशन के लिए सिर्फ एक और प्रविष्टि । यह एक अच्छा संदर्भ है।


महान। यह मददगार हो सकता है अगर आप अन्य रंग और पृष्ठभूमि रंग भी जोड़ सकते हैं।
नैनो

7
कुछ और: `FG_DEFAULT = 39, FG_BLACK = 30, FG_RED = 31, FG_GREEN = 32, FG_YELLOW = 33, FG_BLUE = 34, FG_CAGAN = 35, FG_CYAN = 36, FG_IGHT_GRAY = 37, FG_LRE = = 37/37; 92, FG_LIGHT_YELLOW = 93, FG_LIGHT_BLUE = 94, FG_LIGHT_MAGENTA = 95, FG_LIGHT_CYAN = 96, FG_WHITE = 97, BG_HED = 41, BG_GREEN = 42, BG_BLUE = 44, BG_DEFAULT = 49-8-9
8/

6
यदि आप के लिए परिभाषित operator<<करते हैं Code, तो आप std::cout << Color::FG_RED;इसके बजाय सीधे लिख सकते हैं std::cout << Modifier(Color::FG_RED);। यह Modifierआवश्यक नहीं है।
नवाज

2
@ नवाज़ अच्छा विचार है। यहाँ इस तरह एक कार्यान्वयन है: pastebin.com/zWC3t9hC । हालाँकि मैं अपने मूल कार्यान्वयन को उत्तर में रखूंगा क्योंकि मुझे लगता है कि यह अधिक विलक्षण है।
जोएल Sjögren

1
वास्तव में मुझे पहला कार्यान्वयन बेहतर लगता है क्योंकि आप रंगों को चालू या बंद करने के लिए एक ध्वज जोड़ सकते हैं: bool sh;वर्ग में जोड़ें और निर्माता को बदल दें Modifier (Code pCode, bool show = true) : code(pCode), sh(show) {}। अंत में, <<ऑपरेटर के शरीर में वर्तमान लाइन if (sh)और return << os;अन्यथा वापस आ जाएगी। यह आपके कोड को लिखने की अनुमति देता है, Color::Modifier red(Color::FG_RED, BoolVar);जहां आप BoolVarप्रोग्राम के प्रारंभ के रूप में सही या गलत के रूप में सेट कर सकते हैं । आप इसे स्क्रीन पर देखने के लिए चालू कर सकते हैं और किसी फ़ाइल पर पुनर्निर्देशित कर सकते हैं।
rpsml 17

42

किसी भी रंग का उत्पादन करने से पहले आपको यह सुनिश्चित करना होगा कि आप एक टर्मिनल में हैं:

[ -t 1 ] && echo 'Yes I am in a terminal'  # isatty(3) call in C

फिर आपको टर्मिनल क्षमता की जांच करने की आवश्यकता है यदि यह रंग का समर्थन करता है

terminfo (लिनक्स पर आधारित) सिस्टम पर आप समर्थित रंगों की मात्रा प्राप्त कर सकते हैं

Number_Of_colors_Supported=$(tput colors)

सिस्टम पर termcap (बीएसडी आधारित) के रूप में आप समर्थित रंगों की मात्रा प्राप्त कर सकते हैं

Number_Of_colors_Supported=$(tput Co)

फिर आप निर्णय लें:

[ ${Number_Of_colors_Supported} -ge 8 ] && {
    echo 'You are fine and can print colors'
} || {
    echo 'Terminal does not support color'
}

BTW, रंग का उपयोग न करें क्योंकि यह ESC वर्णों के साथ पहले सुझाया गया था। टर्मिनल क्षमता के लिए मानक कॉल का उपयोग करें जो आपको उस विशेष रंग को प्रदान करेगा जो विशेष टर्मिनल समर्थन करता है।

बीएसडी आधारित
fg_black="$(tput AF 0)"
fg_red="$(tput AF 1)"
fg_green="$(tput AF 2)"
fg_yellow="$(tput AF 3)"
fg_blue="$(tput AF 4)"
fg_magenta="$(tput AF 5)"
fg_cyan="$(tput AF 6)"
fg_white="$(tput AF 7)"
reset="$(tput me)"
लिनक्स आधारित है
fg_black="$(tput setaf 0)"
fg_red="$(tput setaf 1)"
fg_green="$(tput setaf 2)"
fg_yellow="$(tput setaf 3)"
fg_blue="$(tput setaf 4)"
fg_magenta="$(tput setaf 5)"
fg_cyan="$(tput setaf 6)"
fg_white="$(tput setaf 7)"
reset="$(tput sgr0)"
इस रूप में उपयोग करें
echo -e "${fg_red}  Red  ${fg_green} Bull ${reset}"

3
क्या यह बैश विशिष्ट नहीं है? -t 1 जाहिर तौर पर C ++ में काम नहीं करेगा, और इस tput प्रोग्राम को कॉल करने पर C ++ प्रोग्राम में यह बहुत ही गोल हो जाएगा।
माचा

2
@ माचा, हां, [ -t 1 ]यह श / बश विशिष्ट है, लेकिन #(comment)हस्ताक्षर के बाद दाईं ओर सी फ़ंक्शन है जो समान है। man 3 isattyइस पर मदद करनी चाहिए;) मुख्य बिंदु के स्पष्टीकरण को सरल बनाने के लिए शेल कमांड के रूप में दिखाया गया उदाहरण। tputमानक टर्मिनल क्षमता इंटरफ़ेस को क्वेरी करने के लिए OPEN स्रोत उपयोगिता के रूप में ।
एलेक्स

1
मुझे यकीन नहीं है कि लोग सीधे उन कोड का उपयोग करने का सुझाव क्यों देते हैं। इस तरह की धारणाएँ बनाना वास्तव में बहुत बुरा अभ्यास है। यहां तक ​​कि अगर यह शेल विशिष्ट कोड है, तो इसे शेल अनुभव के एक नौसिखिए राशि वाले किसी भी व्यक्ति द्वारा अनुवादित किया जा सकता है।
ऑसिरिसगोथरा

34

जैसा कि दूसरों ने कहा है, आप बच पात्रों का उपयोग कर सकते हैं। आप इसे आसान बनाने के लिए मेरे हेडर का उपयोग कर सकते हैं :

#ifndef _COLORS_
#define _COLORS_

/* FOREGROUND */
#define RST  "\x1B[0m"
#define KRED  "\x1B[31m"
#define KGRN  "\x1B[32m"
#define KYEL  "\x1B[33m"
#define KBLU  "\x1B[34m"
#define KMAG  "\x1B[35m"
#define KCYN  "\x1B[36m"
#define KWHT  "\x1B[37m"

#define FRED(x) KRED x RST
#define FGRN(x) KGRN x RST
#define FYEL(x) KYEL x RST
#define FBLU(x) KBLU x RST
#define FMAG(x) KMAG x RST
#define FCYN(x) KCYN x RST
#define FWHT(x) KWHT x RST

#define BOLD(x) "\x1B[1m" x RST
#define UNDL(x) "\x1B[4m" x RST

#endif  /* _COLORS_ */

शीर्ष लेख के मैक्रो का उपयोग करने वाला एक उदाहरण हो सकता है:

#include <iostream>
#include "colors.h"
using namespace std;

int main()
{
    cout << FBLU("I'm blue.") << endl;
    cout << BOLD(FBLU("I'm blue-bold.")) << endl;
    return 0;
}

यहां छवि विवरण दर्ज करें


बहुत बढ़िया हेडर!
झेंग क्वा

16

मैं निम्नलिखित समाधान का उपयोग करता हूं, यह काफी सरल और सुरुचिपूर्ण है, आसानी से स्रोत में चिपकाया जा सकता है, और लिनक्स / बैश पर काम करता है:

const std::string red("\033[0;31m");
const std::string green("\033[1;32m");
const std::string yellow("\033[1;33m");
const std::string cyan("\033[0;36m");
const std::string magenta("\033[0;35m");
const std::string reset("\033[0m");

std::cout << "Measured runtime: " << yellow << timer.count() << reset << std::endl;

14

मेरी समझ से, एक विशिष्ट एएनएसआई रंग कोड

"\033[{FORMAT_ATTRIBUTE};{FORGROUND_COLOR};{BACKGROUND_COLOR}m{TEXT}\033[{RESET_FORMATE_ATTRIBUTE}m"

(नाम और कोडेक) से बना है

  • आगे की ओर देखें

    { "Default", "0" },
    { "Bold", "1" },
    { "Dim", "2" },
    { "Underlined", "3" },
    { "Blink", "5" },
    { "Reverse", "7" },
    { "Hidden", "8" }
  • विदेशी रंग

    { "Default", "39" },
    { "Black", "30" },
    { "Red", "31" },
    { "Green", "32" },
    { "Yellow", "33" },
    { "Blue", "34" },
    { "Magenta", "35" },
    { "Cyan", "36" },
    { "Light Gray", "37" },
    { "Dark Gray", "90" },
    { "Light Red", "91" },
    { "Light Green", "92" },
    { "Light Yellow", "93" },
    { "Light Blue", "94" },
    { "Light Magenta", "95" },
    { "Light Cyan", "96" },
    { "White", "97" }
  • पीछे का रंग

    { "Default", "49" },
    { "Black", "40" },
    { "Red", "41" },
    { "Green", "42" },
    { "Yellow", "43" },
    { "Blue", "44" },
    { "Megenta", "45" },
    { "Cyan", "46" },
    { "Light Gray", "47" },
    { "Dark Gray", "100" },
    { "Light Red", "101" },
    { "Light Green", "102" },
    { "Light Yellow", "103" },
    { "Light Blue", "104" },
    { "Light Magenta", "105" },
    { "Light Cyan", "106" },
    { "White", "107" }
  • पाठ

  • RESET FORMAT ATTRIBUTE

    { "All", "0" },
    { "Bold", "21" },
    { "Dim", "22" },
    { "Underlined", "24" },
    { "Blink", "25" },
    { "Reverse", "27" },
    { "Hidden", "28" }

इस जानकारी के साथ, एक स्ट्रिंग को रंगना आसान है "मैं एक केला हूँ!" इस तरह के भूमिगत रंग "पीला" और पृष्ठभूमि रंग "हरा" के साथ

"\033[0;33;42mI am a Banana!\033[0m"

या सी ++ लाइब्रेरी के साथ रंगाई करें

auto const& colorized_text = color::rize( "I am a banana!", "Yellow", "Green" );
std::cout << colorized_text << std::endl;

FORMAT ATTRIBUTE के साथ और उदाहरण यहां दिए गए हैंयहां छवि विवरण दर्ज करें


यह बहुत बेहतर है और मैं इसे अपने PHP C ++ एक्सटेंशन में उपयोग करने में सक्षम हूं।
आफताब नवीद

12

यह एक पुराना विषय है, लेकिन मैंने सरल सी मैक्रोज़ द्वारा परिभाषित रंगों के लिए नेस्टेड उपवर्ग और स्थिर सदस्यों के साथ एक वर्ग लिखा है।

मुझे colorइस पोस्ट से फंक्शन Color No In C प्रोग्रामिंग में user no2pencil द्वारा dreamincode.net में मिला।

मैंने इसे इस तरह से बनाया ताकि std :: cout स्ट्रीम में स्थिर स्थिरांक का उपयोग करने में सक्षम हो:

cout << zkr::cc::fore::red << "This is red text. " 
     << zkr::cc::console << "And changing to console default colors, fg, bg."
     << endl;

कक्षा और एक परीक्षण कार्यक्रम स्रोत कोड यहां डाउनलोड किया जा सकता है

cc::consoleडिफ़ॉल्ट रंगों और विशेषताओं को सांत्वना देने के लिए रीसेट हो cc::underlineजाएगा, पाठ को रेखांकित करेगा, जो पोटीन पर काम करता है जिसे मैंने परीक्षण कार्यक्रम का परीक्षण किया है।

रंग की:

black
blue
red
magenta
green
cyan
yellow
white

lightblack
lightblue
lightred
lightmagenta
lightgreen
lightcyan
lightyellow
lightwhite

जिसका उपयोग स्थिर वर्ग के दोनों foreऔर backस्थिर उपवर्गों के साथ किया जा सकता है cc

EDIT 2017

मैं सिर्फ अधिक व्यावहारिक होने के लिए यहां क्लास कोड जोड़ रहा हूं।

रंग कोड मैक्रो:

#define CC_CONSOLE_COLOR_DEFAULT "\033[0m"
#define CC_FORECOLOR(C) "\033[" #C "m"
#define CC_BACKCOLOR(C) "\033[" #C "m"
#define CC_ATTR(A) "\033[" #A "m"

और मुख्य रंग फ़ंक्शन जो स्क्रीन पर एक रंग या एक विशेषता को परिभाषित करता है:

char *cc::color(int attr, int fg, int bg)
{
    static char command[13];

    /* Command is the control command to the terminal */
    sprintf(command, "%c[%d;%d;%dm", 0x1B, attr, fg + 30, bg + 40);
    return command;
}

ccolor.h

#include <stdio.h>

#define CC_CONSOLE_COLOR_DEFAULT "\033[0m"
#define CC_FORECOLOR(C) "\033[" #C "m"
#define CC_BACKCOLOR(C) "\033[" #C "m"
#define CC_ATTR(A) "\033[" #A "m"

namespace zkr
{
    class cc
    {
    public:

        class fore
        {
        public:
            static const char *black;
            static const char *blue;
            static const char *red;
            static const char *magenta;
            static const char *green;
            static const char *cyan;
            static const char *yellow;
            static const char *white;
            static const char *console;

            static const char *lightblack;
            static const char *lightblue;
            static const char *lightred;
            static const char *lightmagenta;
            static const char *lightgreen;
            static const char *lightcyan;
            static const char *lightyellow;
            static const char *lightwhite;
        };

        class back
        {
        public:
            static const char *black;
            static const char *blue;
            static const char *red;
            static const char *magenta;
            static const char *green;
            static const char *cyan;
            static const char *yellow;
            static const char *white;
            static const char *console;

            static const char *lightblack;
            static const char *lightblue;
            static const char *lightred;
            static const char *lightmagenta;
            static const char *lightgreen;
            static const char *lightcyan;
            static const char *lightyellow;
            static const char *lightwhite;
        };

        static char *color(int attr, int fg, int bg);
        static const char *console;
        static const char *underline;
        static const char *bold;
    };
}

ccolor.cpp

#include "ccolor.h"

using namespace std;

namespace zkr
{
    enum Color
    {
        Black,
        Red,
        Green,
        Yellow,
        Blue,
        Magenta,
        Cyan,
        White,
        Default = 9
    };

    enum Attributes
    {
        Reset,
        Bright,
        Dim,
        Underline,
        Blink,
        Reverse,
        Hidden
    };

    char *cc::color(int attr, int fg, int bg)
    {
        static char command[13];
        /* Command is the control command to the terminal */
        sprintf(command, "%c[%d;%d;%dm", 0x1B, attr, fg + 30, bg + 40);
        return command;
    }

    const char *cc::console = CC_CONSOLE_COLOR_DEFAULT;
    const char *cc::underline = CC_ATTR(4);
    const char *cc::bold = CC_ATTR(1);

    const char *cc::fore::black = CC_FORECOLOR(30);
    const char *cc::fore::blue = CC_FORECOLOR(34);
    const char *cc::fore::red = CC_FORECOLOR(31);
    const char *cc::fore::magenta = CC_FORECOLOR(35);
    const char *cc::fore::green = CC_FORECOLOR(92);
    const char *cc::fore::cyan = CC_FORECOLOR(36);
    const char *cc::fore::yellow = CC_FORECOLOR(33);
    const char *cc::fore::white = CC_FORECOLOR(37);
    const char *cc::fore::console = CC_FORECOLOR(39);

    const char *cc::fore::lightblack = CC_FORECOLOR(90);
    const char *cc::fore::lightblue = CC_FORECOLOR(94);
    const char *cc::fore::lightred = CC_FORECOLOR(91);
    const char *cc::fore::lightmagenta = CC_FORECOLOR(95);
    const char *cc::fore::lightgreen = CC_FORECOLOR(92);
    const char *cc::fore::lightcyan = CC_FORECOLOR(96);
    const char *cc::fore::lightyellow = CC_FORECOLOR(93);
    const char *cc::fore::lightwhite = CC_FORECOLOR(97);

    const char *cc::back::black = CC_BACKCOLOR(40);
    const char *cc::back::blue = CC_BACKCOLOR(44);
    const char *cc::back::red = CC_BACKCOLOR(41);
    const char *cc::back::magenta = CC_BACKCOLOR(45);
    const char *cc::back::green = CC_BACKCOLOR(42);
    const char *cc::back::cyan = CC_BACKCOLOR(46);
    const char *cc::back::yellow = CC_BACKCOLOR(43);
    const char *cc::back::white = CC_BACKCOLOR(47);
    const char *cc::back::console = CC_BACKCOLOR(49);

    const char *cc::back::lightblack = CC_BACKCOLOR(100);
    const char *cc::back::lightblue = CC_BACKCOLOR(104);
    const char *cc::back::lightred = CC_BACKCOLOR(101);
    const char *cc::back::lightmagenta = CC_BACKCOLOR(105);
    const char *cc::back::lightgreen = CC_BACKCOLOR(102);
    const char *cc::back::lightcyan = CC_BACKCOLOR(106);
    const char *cc::back::lightyellow = CC_BACKCOLOR(103);
    const char *cc::back::lightwhite = CC_BACKCOLOR(107);
}

2
कोड के लिए धन्यवाद। मैंने बोल्ड टेक्स्ट प्रदर्शित करने की अनुमति देने के लिए एक और ANSI एस्केप कोड जोड़ा :const char *cc::bold = CC_ATTR(1);
ड्रू नोक

जोड़ के लिए धन्यवाद। मैंने इसे क्लास कोड में शामिल किया है।
क्रिस्टोस लिट्रास

9

यदि आपका टर्मिनल इसका समर्थन करता है, तो आप एस्केप सीक्वेंस का उपयोग कर सकते हैं। उदाहरण के लिए:

echo \[\033[32m\]Hello, \[\033[36m\]colourful \[\033[33mworld!\033[0m\]

9

Gon1332 के हेडर का एक विस्तारित संस्करण:

//
//  COLORS.h
//
//  Posted by Gon1332 May 15 2015 on StackOverflow
//  /programming/2616906/how-do-i-output-coloured-text-to-a-linux-terminal#2616912
//
//  Description: An easy header file to make colored text output to terminal second nature.
//  Modified by Shades Aug. 14 2018

// PLEASE carefully read comments before using this tool, this will save you a lot of bugs that are going to be just about impossible to find.
#ifndef COLORS_h
#define COLORS_h

/* FOREGROUND */
// These codes set the actual text to the specified color
#define RESETTEXT  "\x1B[0m" // Set all colors back to normal.
#define FOREBLK  "\x1B[30m" // Black
#define FORERED  "\x1B[31m" // Red
#define FOREGRN  "\x1B[32m" // Green
#define FOREYEL  "\x1B[33m" // Yellow
#define FOREBLU  "\x1B[34m" // Blue
#define FOREMAG  "\x1B[35m" // Magenta
#define FORECYN  "\x1B[36m" // Cyan
#define FOREWHT  "\x1B[37m" // White

/* BACKGROUND */
// These codes set the background color behind the text.
#define BACKBLK "\x1B[40m"
#define BACKRED "\x1B[41m"
#define BACKGRN "\x1B[42m"
#define BACKYEL "\x1B[43m"
#define BACKBLU "\x1B[44m"
#define BACKMAG "\x1B[45m"
#define BACKCYN "\x1B[46m"
#define BACKWHT "\x1B[47m"

// These will set the text color and then set it back to normal afterwards.
#define BLK(x) FOREBLK x RESETTEXT
#define RED(x) FORERED x RESETTEXT
#define GRN(x) FOREGRN x RESETTEXT
#define YEL(x) FOREYEL x RESETTEXT
#define BLU(x) FOREBLU x RESETTEXT
#define MAG(x) FOREMAG x RESETTEXT
#define CYN(x) FORECYN x RESETTEXT
#define WHT(x) FOREWHT x RESETTEXT

// Example usage: cout << BLU("This text's color is now blue!") << endl;

// These will set the text's background color then reset it back.
#define BackBLK(x) BACKBLK x RESETTEXT
#define BackRED(x) BACKRED x RESETTEXT
#define BackGRN(x) BACKGRN x RESETTEXT
#define BackYEL(x) BACKYEL x RESETTEXT
#define BackBLU(x) BACKBLU x RESETTEXT
#define BackMAG(x) BACKMAG x RESETTEXT
#define BackCYN(x) BACKCYN x RESETTEXT
#define BackWHT(x) BACKWHT x RESETTEXT

// Example usage: cout << BACKRED(FOREBLU("I am blue text on a red background!")) << endl;

// These functions will set the background to the specified color indefinitely.
// NOTE: These do NOT call RESETTEXT afterwards. Thus, they will set the background color indefinitely until the user executes cout << RESETTEXT
// OR if a function is used that calles RESETTEXT i.e. cout << RED("Hello World!") will reset the background color since it calls RESETTEXT.
// To set text COLOR indefinitely, see SetFore functions below.
#define SetBackBLK BACKBLK
#define SetBackRED BACKRED
#define SetBackGRN BACKGRN
#define SetBackYEL BACKYEL
#define SetBackBLU BACKBLU
#define SetBackMAG BACKMAG
#define SetBackCYN BACKCYN
#define SetBackWHT BACKWHT

// Example usage: cout << SetBackRED << "This text's background and all text after it will be red until RESETTEXT is called in some way" << endl;

// These functions will set the text color until RESETTEXT is called. (See above comments)
#define SetForeBLK FOREBLK
#define SetForeRED FORERED
#define SetForeGRN FOREGRN
#define SetForeYEL FOREYEL
#define SetForeBLU FOREBLU
#define SetForeMAG FOREMAG
#define SetForeCYN FORECYN
#define SetForeWHT FOREWHT

// Example usage: cout << SetForeRED << "This text and all text after it will be red until RESETTEXT is called in some way" << endl;

#define BOLD(x) "\x1B[1m" x RESETTEXT // Embolden text then reset it.
#define BRIGHT(x) "\x1B[1m" x RESETTEXT // Brighten text then reset it. (Same as bold but is available for program clarity)
#define UNDL(x) "\x1B[4m" x RESETTEXT // Underline text then reset it.

// Example usage: cout << BOLD(BLU("I am bold blue text!")) << endl;

// These functions will embolden or underline text indefinitely until RESETTEXT is called in some way.

#define SetBOLD "\x1B[1m" // Embolden text indefinitely.
#define SetBRIGHT "\x1B[1m" // Brighten text indefinitely. (Same as bold but is available for program clarity)
#define SetUNDL "\x1B[4m" // Underline text indefinitely.

// Example usage: cout << setBOLD << "I and all text after me will be BOLD/Bright until RESETTEXT is called in some way!" << endl;

#endif /* COLORS_h */

जैसा कि आप देख सकते हैं, इसमें और अधिक क्षमताएं हैं जैसे कि पृष्ठभूमि के रंग को अस्थायी रूप से सेट करने की क्षमता, अनिश्चित काल तक, और अन्य विशेषताएं। मेरा यह भी मानना ​​है कि सभी कार्यों को याद रखने के लिए यह थोड़ा अधिक अनुकूल और आसान है।

#include <iostream>
#include "COLORS.h"

int main() {
  std::cout << SetBackBLU << SetForeRED << endl;
  std::cout << "I am red text on a blue background! :) " << endl;
  return 0;
}

बस अपनी परियोजना में हेडर फ़ाइल शामिल करें और आप रंगीन टर्मिनल आउटपुट के साथ रॉक और रोल करने के लिए तैयार हैं।


3

रंग पाठ के लिए एक त्वरित और आसान तरीके के लिए यहां मेरे हेडर का प्रयास करें: एडी का कलर हैडर


एस्केप अनुक्रम-रंग-हैडर

C ++ का उपयोग करके यूनिक्स में अपने आउटपुट को रंग दें !!


पाठ विशेषता विकल्प:

ATTRIBUTES_OFF, BOLD, UNDERSCORE, BLINK, REVERSE_VIDEO, CONCEALED


रंग विकल्प:

BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE


प्रारूप:

सामान्य प्रारूप, वह मूल्य शामिल करें जो आप $ चर $ में चाहते हैं

COLOR_$Foreground_Color$_$Background_Color$
COLOR_$Text_Attribute$_$Foreground_Color$_$Background_Color$
COLOR_NORMAL  // To set color to default

जैसे

COLOR_BLUE_BLACK // Leave Text Attribute Blank if no Text Attribute appied
COLOR_UNDERSCORE_YELLOW_RED
COLOR_NORMAL


उपयोग:

बस टेक्स्ट को आउटपुट करने से पहले अपने इच्छित रंग को स्ट्रीम करने के लिए उपयोग करें और टेक्स्ट को आउटपुट करने के बाद रंग को सामान्य पर सेट करने के लिए फिर से उपयोग करें।

cout << COLOR_BLUE_BLACK << "TEXT" << COLOR_NORMAL << endl;
cout << COLOR_BOLD_YELLOW_CYAN << "TEXT" << COLOR_NORMAL << endl;

यह लिंक-ओनली उत्तर है और यदि लिंक डाउन हो जाता है तो बेकार हो जाएगा। कृपया कुछ कोड जोड़ें या अपना उत्तर विस्तृत करें
dgilperez

2
क्षमा करें, यहाँ नौसिखिया ... बस कुछ और जानकारी जोड़ी। यह काम करो?
उड्यूस

@ sjm324 मुझे लगता है कि क्या BLINK का समर्थन किया गया है, यह आपके सिस्टम पर आधारित है
Uuse

3

आप एएनएसआई रंग कोड का उपयोग कर सकते हैं।

इन कार्यों का उपयोग करें।

enum c_color{BLACK=30,RED=31,GREEN=32,YELLOW=33,BLUE=34,MAGENTA=35,CYAN=36,WHITE=37};
enum c_decoration{NORMAL=0,BOLD=1,FAINT=2,ITALIC=3,UNDERLINE=4,RIVERCED=26,FRAMED=51};
void pr(const string str,c_color color,c_decoration decoration=c_decoration::NORMAL){
  cout<<"\033["<<decoration<<";"<<color<<"m"<<str<<"\033[0m";
}

void prl(const string str,c_color color,c_decoration decoration=c_decoration::NORMAL){
   cout<<"\033["<<decoration<<";"<<color<<"m"<<str<<"\033[0m"<<endl;
}

2

सबसे अच्छा तरीका ncurses पुस्तकालय का उपयोग करना है - हालांकि यह एक अखरोट को चटकाने के लिए एक स्लेजहैमर हो सकता है यदि आप बस एक साधारण रंगीन स्ट्रिंग का उत्पादन करना चाहते हैं


3
@ यह एक दर्द के लिए ncurses का उपयोग करने के लिए सिर्फ गूंज के माध्यम से कुछ रंग प्राप्त करने के लिए होगा। :)
रिंग वाहक

2

OSX शेल पर, यह मेरे लिए काम करता है ("लाल पाठ" के सामने 2 रिक्त स्थान सहित):

$ printf "\e[033;31m  red text\n"
$ echo "$(tput setaf 1)  red text"
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.