The starting point of layers for AGL Distribution v1.0
[AGL/meta-agl.git] / meta-agl / recipes-core / psplash / files / psplash-colors.h
1 /*
2  *  pslash - a lightweight framebuffer splashscreen for embedded devices.
3  *
4  *  Copyright (c) 2012 sleep(5) ltd
5  *  Author: Tomas Frydrych <tomas@sleepfive.com>
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2, or (at your option)
10  *  any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  */
18
19 #ifndef _HAVE_PSPLASH_COLORS_H
20 #define _HAVE_PSPLASH_COLORS_H
21
22 /* This is the overall background color */
23 #define PSPLASH_BACKGROUND_COLOR 0xff,0xff,0xff
24
25 /* This is the color of any text output */
26 #define PSPLASH_TEXT_COLOR 0x00,0x00,0x00
27
28 /* This is the color of the progress bar indicator */
29 #define PSPLASH_BAR_COLOR 0x00,0x00,0x00
30
31 /* This is the color of the progress bar background */
32 #define PSPLASH_BAR_BACKGROUND_COLOR 0xff,0xff,0xff
33
34 #endif