2016-03-12 01:20:51 +01:00
|
|
|
/* Copyright (c) 2002-2012 Croteam Ltd.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of version 2 of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation
|
|
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
|
2016-03-11 14:57:17 +01:00
|
|
|
|
|
|
|
#ifndef __SECOLORS_H
|
|
|
|
#define __SECOLORS_H 1
|
|
|
|
|
|
|
|
#define SE_COL_ORANGE_LIGHT 0xffd70000
|
|
|
|
#define SE_COL_ORANGE_NEUTRAL 0xee9c0000
|
|
|
|
#define SE_COL_ORANGE_DARK 0x9b4b0000
|
|
|
|
#define SE_COL_ORANGE_DARK_LT 0xbc6a0000
|
|
|
|
#define SE_COL_BLUE_DARK_HV 0x151c2300
|
|
|
|
#define SE_COL_BLUE_DARK 0x2a384600
|
|
|
|
#define SE_COL_BLUE_DARK_LT 0x43596f00
|
|
|
|
#define SE_COL_BLUE_NEUTRAL 0x5c7a9900
|
|
|
|
#define SE_COL_BLUE_NEUTRAL_LT 0x6097cc00
|
|
|
|
#define SE_COL_BLUE_LIGHT 0x64b4ff00
|
|
|
|
#define SE_COL_BLUEGREEN_LT 0x6cff6c00
|
|
|
|
|
2016-03-12 01:20:51 +01:00
|
|
|
#endif
|