How to print color in console in groovy
def fg = 30 | |
def bg = 46 | |
def style = "${(char)27}[$fg;$bg"+"m" | |
println(style+"HELLO") | |
/* | |
+~~~~~~+~~~~~~+~~~~~~~~~~~+ | |
| fg | bg | color | | |
+~~~~~~+~~~~~~+~~~~~~~~~~~+ | |
| 30 | 40 | black | | |
| 31 | 41 | red | | |
| 32 | 42 | green | | |
| 33 | 43 | yellow | | |
| 34 | 44 | blue | | |
| 35 | 45 | magenta | | |
| 36 | 46 | cyan | | |
| 37 | 47 | white | | |
| 39 | 49 | default | | |
+~~~~~~+~~~~~~+~~~~~~~~~~~+ | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment