diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /utils/hlfaceposer/choreoviewcolors.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'utils/hlfaceposer/choreoviewcolors.h')
| -rw-r--r-- | utils/hlfaceposer/choreoviewcolors.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/utils/hlfaceposer/choreoviewcolors.h b/utils/hlfaceposer/choreoviewcolors.h new file mode 100644 index 0000000..1492a93 --- /dev/null +++ b/utils/hlfaceposer/choreoviewcolors.h @@ -0,0 +1,50 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef CHOREOVIEWCOLORS_H +#define CHOREOVIEWCOLORS_H +#ifdef _WIN32 +#pragma once +#endif + +// Defines colors for choreo view +#define COLOR_CHOREO_BACKGROUND RGB( 240, 240, 220 ) +#define COLOR_CHOREO_DARKBACKGROUND RGB( 230, 230, 200 ) +#define COLOR_CHOREO_TEXT RGB( 0, 0, 0 ) +#define COLOR_CHOREO_LIGHTTEXT RGB( 180, 180, 120 ) + +#define COLOR_CHOREO_EVENT RGB( 250, 100, 100 ) +#define COLOR_CHOREO_EVENT_TRIGGERED RGB( 32, 130, 150 ) +#define COLOR_CHOREO_EVENT_SELECTED RGB( 220, 150, 150 ) + +#define COLOR_CHOREO_DIVIDER RGB( 63, 63, 63 ) +#define COLOR_CHOREO_ACTORNAME RGB( 80, 150, 150 ) +#define COLOR_CHOREO_ACTORNAME_INACTIVE RGB( 150, 150, 150 ) +#define COLOR_CHOREO_ACTORLINE RGB( 200, 200, 175 ) +#define COLOR_CHOREO_CHANNELNAME RGB( 150, 150, 100 ) +#define COLOR_CHOREO_CHANNELLINE RGB( 63, 63, 31 ) +#define COLOR_CHOREO_SEGMENTDIVIDER RGB( 63, 120, 255 ) +#define COLOR_CHOREO_SEGMENTDIVIDER_BG RGB( 170, 190, 230 ) + +#define COLOR_CHOREO_LOOPPOINT RGB( 255, 120, 255 ) +#define COLOR_CHOREO_LOOPPOINT_BG RGB( 255, 100, 150 ) +#define COLOR_CHOREO_LOOPPOINT_START_BG RGB( 255, 150, 150 ) + +#define COLOR_CHOREO_STOPPOINT RGB( 255, 31, 31 ) +#define COLOR_CHOREO_STOPPOINT_BG RGB( 255, 0, 0 ) + +#define COLOR_CHOREO_PLAYBACKTICK RGB( 180, 31, 31 ) +#define COLOR_CHOREO_TIMELINE RGB( 31, 31, 127 ) +#define COLOR_CHOREO_ENDTIME RGB( 0, 0, 255 ) +#define COLOR_CHOREO_PLAYBACKTICKTEXT RGB( 127, 0, 0 ) +#define COLOR_CHOREO_TICKAB RGB( 31, 120, 31 ) + +#define COLOR_INFO_BACKGROUND RGB( 240, 240, 240 ) +#define COLOR_INFO_TEXT RGB( 63, 31, 0 ) +#define COLOR_INFO_BORDER RGB( 100, 100, 250 ) + +#endif // CHOREOVIEWCOLORS_H |