forked from valve/halflife-sdk
33 lines
No EOL
1 KiB
C
33 lines
No EOL
1 KiB
C
/***
|
|
*
|
|
* Copyright (C) 2002 The Wastes Project, All Rights Reserved.
|
|
*
|
|
* This product contains software technology from Valve Software, LLC,
|
|
* Copyright © 1996-2001, Valve LLC, All rights reserved.
|
|
*
|
|
* Use, distribution, and modification of this source code and/or resulting
|
|
* object code is restricted to non-commercial enhancements to products from
|
|
* The Wastes Project. All other use, distribution, or modification is prohibited
|
|
* without written permission from The Wastes Project.
|
|
*
|
|
***/
|
|
#ifndef __TW_VGUI_H_
|
|
#define __TW_VGUI_H_
|
|
|
|
// VGUI Color Scheme info
|
|
|
|
// Panel Scheme
|
|
#define TW_PANEL_BG_RGB 64,64,64
|
|
#define TW_PANEL_BG_RGBA TW_PANEL_BG_RGB ,128
|
|
#define TW_PANEL_BORDER_RGBA 255,255,255,128
|
|
|
|
// CommandButton Scheme
|
|
#define TW_COMMANDBUTTON_BG_RGBA TW_PANEL_BG_RGBA
|
|
#define TW_COMMANDBUTTON_BORDER_RGBA TW_PANEL_BORDER_RGBA
|
|
#define TW_COMMANDBUTTON_ACTIVE_RGBA TW_PANEL_BORDER_RGBA
|
|
|
|
// Scorepanel Scheme
|
|
#define TW_SCOREPANEL_HIGHLIGHT_TEXT_RGBA TW_PANEL_BG_RGB ,0
|
|
#define TW_SCOREPANEL_HIGHLIGHT_COLOR_A 64
|
|
|
|
#endif |