How to change eclipse console output color?












1















I am running eclipse on Ubuntu 12.04 and I'd like to change console output color. I tried to edit it via Preferences>Run/Debug>Console>Background color but it doesn't work. Is there some other way to change?










share|improve this question



























    1















    I am running eclipse on Ubuntu 12.04 and I'd like to change console output color. I tried to edit it via Preferences>Run/Debug>Console>Background color but it doesn't work. Is there some other way to change?










    share|improve this question

























      1












      1








      1


      1






      I am running eclipse on Ubuntu 12.04 and I'd like to change console output color. I tried to edit it via Preferences>Run/Debug>Console>Background color but it doesn't work. Is there some other way to change?










      share|improve this question














      I am running eclipse on Ubuntu 12.04 and I'd like to change console output color. I tried to edit it via Preferences>Run/Debug>Console>Background color but it doesn't work. Is there some other way to change?







      eclipse console






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Dec 14 '13 at 0:26









      antifrizantifriz

      1611111




      1611111






















          3 Answers
          3






          active

          oldest

          votes


















          11














          The Run/Debug>Console menu is correct. But you have to use the "Standard Out/Standard Error text color" buttons. (You can select different colors for standard output and for standard error). Here:



          Console text colors in Eclipse



          Also see the Eclipse documentation:
          http://help.eclipse.org/juno/topic/org.eclipse.jdt.doc.user/reference/preferences/run-debug/ref-console.htm






          share|improve this answer



















          • 1





            as I said, somehow it doesn't work. What I did at the end was create a new custom theme (.css) and running eclipse on it. This helped a lot: stackoverflow.com/questions/2569364/…

            – antifriz
            Dec 14 '13 at 13:53











          • You said you changed the background color. That wouldn't work :)

            – Malte Skoruppa
            Dec 15 '13 at 14:58











          • Hm, I have never seen these options before. How does Eclipse identity an error message in the compiler output?

            – HelloGoodbye
            Jun 18 '15 at 11:43






          • 1





            @HelloGoodbye There are normally three "standard" streams that connect a program with its environment: stdin (standard input), stdout (standard output), and stderr (standard error). Also see en.wikipedia.org/wiki/Standard_streams. Java implements these streams in the class System, see the global fields in docs.oracle.com/javase/7/docs/api/java/lang/System.html. In Eclipse, these streams are connected to the console, and the above configuration dialog allows you to select different colors for the different streams. The program itself decides what message goes to which stream.

            – Malte Skoruppa
            Jun 18 '15 at 12:57






          • 1





            In the case of the output from the compiler to which your question was referring, it's no different. The compiler is also a program. The compiler knows which of its messages is an error message and which message is not, and sends its messages to either stderr or stdout accordingly.

            – Malte Skoruppa
            Jun 18 '15 at 13:00





















          1














          Window->Preferences=>Build->Console






          share|improve this answer































            0














            I related concept but useful if someone would like full color output on Eclipse's console.



            Get an Eclipse extension called ANSI Escape in Console (Link below)
            https://mihai-nita.net/2013/06/03/eclipse-plugin-ansi-in-console/



            The site contains instructions on how to use it. With this plug in you can output in full color to the console by using standard ANSII escape codes for the output of multicolored text and backgrounds on the console. These ANSI escape codes also work if you run your Java programs on the linux command line, but not on the windows command line.






            share|improve this answer























              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "89"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f390508%2fhow-to-change-eclipse-console-output-color%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              11














              The Run/Debug>Console menu is correct. But you have to use the "Standard Out/Standard Error text color" buttons. (You can select different colors for standard output and for standard error). Here:



              Console text colors in Eclipse



              Also see the Eclipse documentation:
              http://help.eclipse.org/juno/topic/org.eclipse.jdt.doc.user/reference/preferences/run-debug/ref-console.htm






              share|improve this answer



















              • 1





                as I said, somehow it doesn't work. What I did at the end was create a new custom theme (.css) and running eclipse on it. This helped a lot: stackoverflow.com/questions/2569364/…

                – antifriz
                Dec 14 '13 at 13:53











              • You said you changed the background color. That wouldn't work :)

                – Malte Skoruppa
                Dec 15 '13 at 14:58











              • Hm, I have never seen these options before. How does Eclipse identity an error message in the compiler output?

                – HelloGoodbye
                Jun 18 '15 at 11:43






              • 1





                @HelloGoodbye There are normally three "standard" streams that connect a program with its environment: stdin (standard input), stdout (standard output), and stderr (standard error). Also see en.wikipedia.org/wiki/Standard_streams. Java implements these streams in the class System, see the global fields in docs.oracle.com/javase/7/docs/api/java/lang/System.html. In Eclipse, these streams are connected to the console, and the above configuration dialog allows you to select different colors for the different streams. The program itself decides what message goes to which stream.

                – Malte Skoruppa
                Jun 18 '15 at 12:57






              • 1





                In the case of the output from the compiler to which your question was referring, it's no different. The compiler is also a program. The compiler knows which of its messages is an error message and which message is not, and sends its messages to either stderr or stdout accordingly.

                – Malte Skoruppa
                Jun 18 '15 at 13:00


















              11














              The Run/Debug>Console menu is correct. But you have to use the "Standard Out/Standard Error text color" buttons. (You can select different colors for standard output and for standard error). Here:



              Console text colors in Eclipse



              Also see the Eclipse documentation:
              http://help.eclipse.org/juno/topic/org.eclipse.jdt.doc.user/reference/preferences/run-debug/ref-console.htm






              share|improve this answer



















              • 1





                as I said, somehow it doesn't work. What I did at the end was create a new custom theme (.css) and running eclipse on it. This helped a lot: stackoverflow.com/questions/2569364/…

                – antifriz
                Dec 14 '13 at 13:53











              • You said you changed the background color. That wouldn't work :)

                – Malte Skoruppa
                Dec 15 '13 at 14:58











              • Hm, I have never seen these options before. How does Eclipse identity an error message in the compiler output?

                – HelloGoodbye
                Jun 18 '15 at 11:43






              • 1





                @HelloGoodbye There are normally three "standard" streams that connect a program with its environment: stdin (standard input), stdout (standard output), and stderr (standard error). Also see en.wikipedia.org/wiki/Standard_streams. Java implements these streams in the class System, see the global fields in docs.oracle.com/javase/7/docs/api/java/lang/System.html. In Eclipse, these streams are connected to the console, and the above configuration dialog allows you to select different colors for the different streams. The program itself decides what message goes to which stream.

                – Malte Skoruppa
                Jun 18 '15 at 12:57






              • 1





                In the case of the output from the compiler to which your question was referring, it's no different. The compiler is also a program. The compiler knows which of its messages is an error message and which message is not, and sends its messages to either stderr or stdout accordingly.

                – Malte Skoruppa
                Jun 18 '15 at 13:00
















              11












              11








              11







              The Run/Debug>Console menu is correct. But you have to use the "Standard Out/Standard Error text color" buttons. (You can select different colors for standard output and for standard error). Here:



              Console text colors in Eclipse



              Also see the Eclipse documentation:
              http://help.eclipse.org/juno/topic/org.eclipse.jdt.doc.user/reference/preferences/run-debug/ref-console.htm






              share|improve this answer













              The Run/Debug>Console menu is correct. But you have to use the "Standard Out/Standard Error text color" buttons. (You can select different colors for standard output and for standard error). Here:



              Console text colors in Eclipse



              Also see the Eclipse documentation:
              http://help.eclipse.org/juno/topic/org.eclipse.jdt.doc.user/reference/preferences/run-debug/ref-console.htm







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Dec 14 '13 at 1:58









              Malte SkoruppaMalte Skoruppa

              9,02343856




              9,02343856








              • 1





                as I said, somehow it doesn't work. What I did at the end was create a new custom theme (.css) and running eclipse on it. This helped a lot: stackoverflow.com/questions/2569364/…

                – antifriz
                Dec 14 '13 at 13:53











              • You said you changed the background color. That wouldn't work :)

                – Malte Skoruppa
                Dec 15 '13 at 14:58











              • Hm, I have never seen these options before. How does Eclipse identity an error message in the compiler output?

                – HelloGoodbye
                Jun 18 '15 at 11:43






              • 1





                @HelloGoodbye There are normally three "standard" streams that connect a program with its environment: stdin (standard input), stdout (standard output), and stderr (standard error). Also see en.wikipedia.org/wiki/Standard_streams. Java implements these streams in the class System, see the global fields in docs.oracle.com/javase/7/docs/api/java/lang/System.html. In Eclipse, these streams are connected to the console, and the above configuration dialog allows you to select different colors for the different streams. The program itself decides what message goes to which stream.

                – Malte Skoruppa
                Jun 18 '15 at 12:57






              • 1





                In the case of the output from the compiler to which your question was referring, it's no different. The compiler is also a program. The compiler knows which of its messages is an error message and which message is not, and sends its messages to either stderr or stdout accordingly.

                – Malte Skoruppa
                Jun 18 '15 at 13:00
















              • 1





                as I said, somehow it doesn't work. What I did at the end was create a new custom theme (.css) and running eclipse on it. This helped a lot: stackoverflow.com/questions/2569364/…

                – antifriz
                Dec 14 '13 at 13:53











              • You said you changed the background color. That wouldn't work :)

                – Malte Skoruppa
                Dec 15 '13 at 14:58











              • Hm, I have never seen these options before. How does Eclipse identity an error message in the compiler output?

                – HelloGoodbye
                Jun 18 '15 at 11:43






              • 1





                @HelloGoodbye There are normally three "standard" streams that connect a program with its environment: stdin (standard input), stdout (standard output), and stderr (standard error). Also see en.wikipedia.org/wiki/Standard_streams. Java implements these streams in the class System, see the global fields in docs.oracle.com/javase/7/docs/api/java/lang/System.html. In Eclipse, these streams are connected to the console, and the above configuration dialog allows you to select different colors for the different streams. The program itself decides what message goes to which stream.

                – Malte Skoruppa
                Jun 18 '15 at 12:57






              • 1





                In the case of the output from the compiler to which your question was referring, it's no different. The compiler is also a program. The compiler knows which of its messages is an error message and which message is not, and sends its messages to either stderr or stdout accordingly.

                – Malte Skoruppa
                Jun 18 '15 at 13:00










              1




              1





              as I said, somehow it doesn't work. What I did at the end was create a new custom theme (.css) and running eclipse on it. This helped a lot: stackoverflow.com/questions/2569364/…

              – antifriz
              Dec 14 '13 at 13:53





              as I said, somehow it doesn't work. What I did at the end was create a new custom theme (.css) and running eclipse on it. This helped a lot: stackoverflow.com/questions/2569364/…

              – antifriz
              Dec 14 '13 at 13:53













              You said you changed the background color. That wouldn't work :)

              – Malte Skoruppa
              Dec 15 '13 at 14:58





              You said you changed the background color. That wouldn't work :)

              – Malte Skoruppa
              Dec 15 '13 at 14:58













              Hm, I have never seen these options before. How does Eclipse identity an error message in the compiler output?

              – HelloGoodbye
              Jun 18 '15 at 11:43





              Hm, I have never seen these options before. How does Eclipse identity an error message in the compiler output?

              – HelloGoodbye
              Jun 18 '15 at 11:43




              1




              1





              @HelloGoodbye There are normally three "standard" streams that connect a program with its environment: stdin (standard input), stdout (standard output), and stderr (standard error). Also see en.wikipedia.org/wiki/Standard_streams. Java implements these streams in the class System, see the global fields in docs.oracle.com/javase/7/docs/api/java/lang/System.html. In Eclipse, these streams are connected to the console, and the above configuration dialog allows you to select different colors for the different streams. The program itself decides what message goes to which stream.

              – Malte Skoruppa
              Jun 18 '15 at 12:57





              @HelloGoodbye There are normally three "standard" streams that connect a program with its environment: stdin (standard input), stdout (standard output), and stderr (standard error). Also see en.wikipedia.org/wiki/Standard_streams. Java implements these streams in the class System, see the global fields in docs.oracle.com/javase/7/docs/api/java/lang/System.html. In Eclipse, these streams are connected to the console, and the above configuration dialog allows you to select different colors for the different streams. The program itself decides what message goes to which stream.

              – Malte Skoruppa
              Jun 18 '15 at 12:57




              1




              1





              In the case of the output from the compiler to which your question was referring, it's no different. The compiler is also a program. The compiler knows which of its messages is an error message and which message is not, and sends its messages to either stderr or stdout accordingly.

              – Malte Skoruppa
              Jun 18 '15 at 13:00







              In the case of the output from the compiler to which your question was referring, it's no different. The compiler is also a program. The compiler knows which of its messages is an error message and which message is not, and sends its messages to either stderr or stdout accordingly.

              – Malte Skoruppa
              Jun 18 '15 at 13:00















              1














              Window->Preferences=>Build->Console






              share|improve this answer




























                1














                Window->Preferences=>Build->Console






                share|improve this answer


























                  1












                  1








                  1







                  Window->Preferences=>Build->Console






                  share|improve this answer













                  Window->Preferences=>Build->Console







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Dec 4 '18 at 14:22









                  Damian ReloadedDamian Reloaded

                  111




                  111























                      0














                      I related concept but useful if someone would like full color output on Eclipse's console.



                      Get an Eclipse extension called ANSI Escape in Console (Link below)
                      https://mihai-nita.net/2013/06/03/eclipse-plugin-ansi-in-console/



                      The site contains instructions on how to use it. With this plug in you can output in full color to the console by using standard ANSII escape codes for the output of multicolored text and backgrounds on the console. These ANSI escape codes also work if you run your Java programs on the linux command line, but not on the windows command line.






                      share|improve this answer




























                        0














                        I related concept but useful if someone would like full color output on Eclipse's console.



                        Get an Eclipse extension called ANSI Escape in Console (Link below)
                        https://mihai-nita.net/2013/06/03/eclipse-plugin-ansi-in-console/



                        The site contains instructions on how to use it. With this plug in you can output in full color to the console by using standard ANSII escape codes for the output of multicolored text and backgrounds on the console. These ANSI escape codes also work if you run your Java programs on the linux command line, but not on the windows command line.






                        share|improve this answer


























                          0












                          0








                          0







                          I related concept but useful if someone would like full color output on Eclipse's console.



                          Get an Eclipse extension called ANSI Escape in Console (Link below)
                          https://mihai-nita.net/2013/06/03/eclipse-plugin-ansi-in-console/



                          The site contains instructions on how to use it. With this plug in you can output in full color to the console by using standard ANSII escape codes for the output of multicolored text and backgrounds on the console. These ANSI escape codes also work if you run your Java programs on the linux command line, but not on the windows command line.






                          share|improve this answer













                          I related concept but useful if someone would like full color output on Eclipse's console.



                          Get an Eclipse extension called ANSI Escape in Console (Link below)
                          https://mihai-nita.net/2013/06/03/eclipse-plugin-ansi-in-console/



                          The site contains instructions on how to use it. With this plug in you can output in full color to the console by using standard ANSII escape codes for the output of multicolored text and backgrounds on the console. These ANSI escape codes also work if you run your Java programs on the linux command line, but not on the windows command line.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered 2 hours ago









                          Andrew SAndrew S

                          1134




                          1134






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Ask Ubuntu!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f390508%2fhow-to-change-eclipse-console-output-color%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              GameSpot

                              connect to host localhost port 22: Connection refused

                              Getting a Wifi WPA2 wifi connection