2020-04-09 10:51:08 +02:00
|
|
|
/*
|
|
|
|
* pslash - a lightweight framebuffer splashscreen for embedded devices.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 sleep(5) ltd
|
|
|
|
* Author: Tomas Frydrych <tomas@sleepfive.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _HAVE_PSPLASH_COLORS_H
|
|
|
|
#define _HAVE_PSPLASH_COLORS_H
|
|
|
|
|
|
|
|
/* This is the overall background color */
|
2020-04-20 14:17:25 +02:00
|
|
|
#define PSPLASH_BACKGROUND_COLOR 0x00,0x00,0x00
|
2020-04-09 10:51:08 +02:00
|
|
|
|
|
|
|
/* This is the color of any text output */
|
|
|
|
#define PSPLASH_TEXT_COLOR 0xff,0xff,0xff
|
|
|
|
|
|
|
|
/* This is the color of the progress bar indicator */
|
2020-04-20 14:17:25 +02:00
|
|
|
#define PSPLASH_BAR_COLOR 0xff,0xff,0xff
|
2020-04-09 10:51:08 +02:00
|
|
|
|
|
|
|
/* This is the color of the progress bar background */
|
2020-04-20 14:17:25 +02:00
|
|
|
#define PSPLASH_BAR_BACKGROUND_COLOR 0x00,0x00,0x00
|
2020-04-09 10:51:08 +02:00
|
|
|
|
|
|
|
#endif
|