1

I want to copy some colors from IntelliJ color scheme to my application color scheme automatically. Where can I find for example code editor background color of IntelliJ IDEA?

Cœur
  • 37,241
  • 25
  • 195
  • 267
Arseniy
  • 266
  • 2
  • 14

1 Answers1

1

You can find it here, for example.

This is a file with the definition of Text colours.

Also check out this file. It defines many system colours. (like caret, gutter, selection, etc.)

Feedforward
  • 4,521
  • 4
  • 22
  • 34
  • This is part of the Java API, so I'm not quite sure about that. – Feedforward Apr 09 '19 at 10:47
  • If you like the answer and do not have any additional questions, you can accept it (green button on the left) or upvote it. – Feedforward Apr 09 '19 at 10:50
  • Sorry, I delete the comment. The comment was: "Is it possible to call this API from C++ (for example from Qt)" I think I get an answer: https://stackoverflow.com/questions/992836/how-to-access-the-java-method-in-a-c-application – Arseniy Apr 09 '19 at 10:52