-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpsplash-colors.h
40 lines (32 loc) · 1.33 KB
/
psplash-colors.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
* pslash - a lightweight framebuffer splashscreen for embedded devices.
*
* Copyright (c) 2012 sleep(5) ltd
* Author: Tomas Frydrych <tomas@sleepfive.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* 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.
*
*/
#ifndef _HAVE_PSPLASH_COLORS_H
#define _HAVE_PSPLASH_COLORS_H
/* This is the overall background color */
#define PSPLASH_BACKGROUND_COLOR 0x00, 0x00, 0x00
/* This is the color of any text output */
#define PSPLASH_TEXT_COLOR 0xbb, 0xbb, 0xbb
/* This is the color of the progress bar indicator */
#define PSPLASH_BAR_COLOR 0x88, 0x88, 0x88
/* This is the color of the progress bar background */
#define PSPLASH_BAR_BACKGROUND_COLOR 0x44, 0x44, 0x44
/* This is the color of the progress bar border */
#define PSPLASH_BAR_BORDER_COLOR 0xbb, 0xbb, 0xbb
/* This is the color of the space between progress bar and its border */
#define PSPLASH_BAR_BORDER_SPACE_COLOR 0x00, 0x00, 0x00
#endif