Sign in
pigweed
/
third_party
/
github
/
32blit
/
32blit-sdk
/
refs/heads/upstream/patch-picosystem-examples
/
.
/
launcher
/
theme.cpp
blob: 7c8b58b979583b14c8de3d5af494dc4d2e9a88de [
file
] [
log
] [
blame
] [
edit
]
#include
"theme.hpp"
using
namespace
blit
;
Theme
theme
=
{
Pen
(
0
,
0
,
0
,
255
),
Pen
(
255
,
255
,
255
,
10
),
Pen
(
180
,
180
,
220
,
255
),
Pen
(
0
,
255
,
0
,
255
)
};
void
init_theme
(
void
)
{
if
(!
read_save
(
theme
))
{
write_save
(
theme
);
}
}