1 /** @file 2 MACRO definitions for color used in Setup Browser. 3 4 Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR> 5 This program and the accompanying materials 6 are licensed and made available under the terms and conditions of the BSD License 7 which accompanies this distribution. The full text of the license may be found at 8 http://opensource.org/licenses/bsd-license.php 9 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12 13 **/ 14 // 15 // Unicode collation protocol in 16 17 #ifndef _COLORS_H_ 18 #define _COLORS_H_ 19 20 // 21 // Screen Color Settings 22 // 23 #define PICKLIST_HIGHLIGHT_TEXT EFI_WHITE 24 #define PICKLIST_HIGHLIGHT_BACKGROUND EFI_BACKGROUND_CYAN 25 #define TITLE_TEXT EFI_WHITE 26 #define TITLE_BACKGROUND EFI_BACKGROUND_BLUE 27 #define KEYHELP_TEXT EFI_LIGHTGRAY 28 #define KEYHELP_BACKGROUND EFI_BACKGROUND_BLACK 29 #define SUBTITLE_BACKGROUND EFI_BACKGROUND_LIGHTGRAY 30 #define BANNER_TEXT EFI_BLUE 31 #define BANNER_BACKGROUND EFI_BACKGROUND_LIGHTGRAY 32 #define FIELD_TEXT_GRAYED EFI_DARKGRAY 33 #define FIELD_BACKGROUND EFI_BACKGROUND_LIGHTGRAY 34 #define POPUP_TEXT EFI_LIGHTGRAY 35 #define POPUP_BACKGROUND EFI_BACKGROUND_BLUE 36 #define POPUP_INVERSE_TEXT EFI_LIGHTGRAY 37 #define POPUP_INVERSE_BACKGROUND EFI_BACKGROUND_BLACK 38 #define HELP_TEXT EFI_BLUE 39 #define ERROR_TEXT EFI_RED | EFI_BRIGHT 40 #define INFO_TEXT EFI_YELLOW | EFI_BRIGHT 41 #define ARROW_TEXT EFI_RED | EFI_BRIGHT 42 #define ARROW_BACKGROUND EFI_BACKGROUND_LIGHTGRAY 43 44 #endif 45