-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.h
29 lines (26 loc) · 917 Bytes
/
styles.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
#ifndef _STYLES_H_
#define _STYLES_H_
#include "plugins/components/drawInterface.h"
#include "plugins/components/utils/color.h"
Styles styles = {
.screen = { 800, 480 },
.margin = 1,
.font = {
"/usr/share/fonts/truetype/roboto/unhinted/RobotoTTF/Roboto-Regular.ttf",
"/usr/share/fonts/truetype/roboto/unhinted/RobotoTTF/Roboto-Bold.ttf",
"/usr/share/fonts/truetype/roboto/unhinted/RobotoTTF/Roboto-Italic.ttf" },
.colors = {
// .background =rgb(33, 37, 43),
// .background =rgb(36, 41, 49),
.background =rgb(52, 50, 51),
// .background =rgb(43, 41, 42),
.white = rgb(255, 255, 255),
// .text =rgb(245, 238, 229),
.text = rgb(255, 255, 255),
.primary = rgb(173, 205, 255),
.secondary = rgb(255, 141, 153),
.tertiary = rgb(141, 221, 153),
.quaternary = rgb(255, 153, 0),
},
};
#endif