Chat-O-Matic/application/AppConstants.h
2021-08-19 17:04:33 -05:00

26 lines
782 B
C

/*
* Copyright 2009-2011, Andrea Anzani. All rights reserved.
* Copyright 2009-2011, Pier Luigi Fiorini. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _APP_CONSTANTS_H
#define _APP_CONSTANTS_H
#include <GraphicsDefs.h>
/**
* Color constants.
*/
const rgb_color APP_ORANGE_COLOR = {255, 186, 0, 255};
const rgb_color APP_GREEN_COLOR = {43, 134, 43, 255};
const rgb_color APP_RED_COLOR = {175, 1, 1, 255};
const rgb_color APP_WHITE_COLOR = {255, 255, 255, 255};
const rgb_color APP_BLACK_COLOR = {0, 0, 0, 255};
const rgb_color APP_SELSTART_COLOR = {254, 150, 57};
const rgb_color APP_SELEND_COLOR = {230, 113, 9};
#define APP_MENTION_BEEP "Chat-o-Matic mention"
#define APP_MESSAGE_BEEP "Chat-o-Matic message"
#endif // _APP_CONSTANTS_H