您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

colour.h 630B

1234567891011121314151617181920212223242526272829303132
  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 );
  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. #include <config/local/colour.h>
  22. #endif /* CONFIG_COLOUR_H */