mirror of
https://github.com/acidanthera/audk.git
synced 2025-05-18 13:30:10 +02:00
https://bugzilla.tianocore.org/show_bug.cgi?id=1373 Replace BSD 2-Clause License with BSD+Patent License. This change is based on the following emails: https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html RFCs with detailed process for the license change: V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Hao Wu <hao.a.wu@intel.com> Reviewed-by: Jian J Wang <jian.j.wang@intel.com>
39 lines
1.4 KiB
C
39 lines
1.4 KiB
C
/** @file
|
|
MACRO definitions for color used in Setup Browser.
|
|
|
|
Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
//
|
|
// Unicode collation protocol in
|
|
|
|
#ifndef _COLORS_H_
|
|
#define _COLORS_H_
|
|
|
|
//
|
|
// Screen Color Settings
|
|
//
|
|
#define PICKLIST_HIGHLIGHT_TEXT EFI_WHITE
|
|
#define PICKLIST_HIGHLIGHT_BACKGROUND EFI_BACKGROUND_CYAN
|
|
#define TITLE_TEXT EFI_WHITE
|
|
#define TITLE_BACKGROUND EFI_BACKGROUND_BLUE
|
|
#define KEYHELP_TEXT EFI_LIGHTGRAY
|
|
#define KEYHELP_BACKGROUND EFI_BACKGROUND_BLACK
|
|
#define SUBTITLE_BACKGROUND EFI_BACKGROUND_LIGHTGRAY
|
|
#define BANNER_TEXT EFI_BLUE
|
|
#define BANNER_BACKGROUND EFI_BACKGROUND_LIGHTGRAY
|
|
#define FIELD_TEXT_GRAYED EFI_DARKGRAY
|
|
#define FIELD_BACKGROUND EFI_BACKGROUND_LIGHTGRAY
|
|
#define POPUP_TEXT EFI_LIGHTGRAY
|
|
#define POPUP_BACKGROUND EFI_BACKGROUND_BLUE
|
|
#define POPUP_INVERSE_TEXT EFI_LIGHTGRAY
|
|
#define POPUP_INVERSE_BACKGROUND EFI_BACKGROUND_BLACK
|
|
#define HELP_TEXT EFI_BLUE
|
|
#define ERROR_TEXT EFI_RED | EFI_BRIGHT
|
|
#define INFO_TEXT EFI_YELLOW | EFI_BRIGHT
|
|
#define ARROW_TEXT EFI_RED | EFI_BRIGHT
|
|
#define ARROW_BACKGROUND EFI_BACKGROUND_LIGHTGRAY
|
|
|
|
#endif
|