]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Universal/SetupBrowserDxe/Colors.h
Rename Protocol/FormCallback.h to Protocol/FormCallbackFramework.h to follow the...
[mirror_edk2.git] / IntelFrameworkModulePkg / Universal / SetupBrowserDxe / Colors.h
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 Colors.h
15
16 Abstract:
17
18
19 Revision History
20
21 --*/
22
23 #ifndef _COLORS_H
24 #define _COLORS_H
25
26 //
27 // Include common header file for this module.
28 //
29 #include "CommonHeader.h"
30
31 //
32 // Screen Color Settings
33 //
34 #define PICKLIST_HIGHLIGHT_TEXT EFI_WHITE
35 #define PICKLIST_HIGHLIGHT_BACKGROUND EFI_BACKGROUND_CYAN
36 #define TITLE_TEXT EFI_WHITE
37 #define TITLE_BACKGROUND EFI_BACKGROUND_BLUE
38 #define KEYHELP_TEXT EFI_LIGHTGRAY
39 #define KEYHELP_BACKGROUND EFI_BACKGROUND_BLACK
40 #define SUBTITLE_TEXT EFI_BLUE
41 #define SUBTITLE_BACKGROUND EFI_BACKGROUND_LIGHTGRAY
42 #define BANNER_TEXT EFI_BLUE
43 #define BANNER_BACKGROUND EFI_BACKGROUND_LIGHTGRAY
44 #define FIELD_TEXT EFI_BLACK
45 #define FIELD_TEXT_GRAYED EFI_DARKGRAY
46 #define FIELD_BACKGROUND EFI_BACKGROUND_LIGHTGRAY
47 #define FIELD_TEXT_HIGHLIGHT EFI_LIGHTGRAY
48 #define FIELD_BACKGROUND_HIGHLIGHT EFI_BACKGROUND_BLACK
49 #define POPUP_TEXT EFI_LIGHTGRAY
50 #define POPUP_BACKGROUND EFI_BACKGROUND_BLUE
51 #define POPUP_INVERSE_TEXT EFI_LIGHTGRAY
52 #define POPUP_INVERSE_BACKGROUND EFI_BACKGROUND_BLACK
53 #define HELP_TEXT EFI_BLUE
54 #define ERROR_TEXT EFI_RED | EFI_BRIGHT
55 #define INFO_TEXT EFI_YELLOW | EFI_BRIGHT
56 #define ARROW_TEXT EFI_RED | EFI_BRIGHT
57 #define ARROW_BACKGROUND EFI_BACKGROUND_LIGHTGRAY
58
59 #endif