Advertisement
Radfler

::set_color

Apr 8th, 2016
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <windows.h>
  2.  
  3. enum class color {
  4.  
  5.     black, blue, green, aqua,
  6.     red, purple, yellow, white,
  7.     gray, light_blue, light_green, light_aqua,
  8.     light_red, light_purple, light_yellow, bright_white
  9.  
  10. };
  11.  
  12. void set_color(color new_color) {
  13.  
  14.     HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);
  15.     SetConsoleTextAttribute(handle, static_cast<WORD>(new_color));
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement