You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

colour.h 803B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #ifndef CONFIG_COLOUR_H
  2. #define CONFIG_COLOUR_H
  3. /** @file
  4. *
  5. * Display colour configuration
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  9. #define COLOR_NORMAL_FG COLOR_WHITE
  10. #define COLOR_NORMAL_BG COLOR_BLUE
  11. #define COLOR_SELECT_FG COLOR_WHITE
  12. #define COLOR_SELECT_BG COLOR_RED
  13. #define COLOR_SEPARATOR_FG COLOR_CYAN
  14. #define COLOR_SEPARATOR_BG COLOR_BLUE
  15. #define COLOR_EDIT_FG COLOR_BLACK
  16. #define COLOR_EDIT_BG COLOR_CYAN
  17. #define COLOR_ALERT_FG COLOR_WHITE
  18. #define COLOR_ALERT_BG COLOR_RED
  19. #define COLOR_URL_FG COLOR_CYAN
  20. #define COLOR_URL_BG COLOR_BLUE
  21. #define COLOR_PXE_FG COLOR_BLACK
  22. #define COLOR_PXE_BG COLOR_WHITE
  23. #include <config/named.h>
  24. #include NAMED_CONFIG(colour.h)
  25. #include <config/local/colour.h>
  26. #include LOCAL_NAMED_CONFIG(colour.h)
  27. #endif /* CONFIG_COLOUR_H */