summaryrefslogtreecommitdiff
path: root/docs/main/theme.py
blob: 29d914f5166c3707d70ea35807252391b7fc52a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# SPDX-License-Identifier: LGPL-3.0-or-later
# Copyright (C) 2020 Daniel Thompson

import wasp

# Adopt a basic all-orange theme
wasp.system.set_theme(
        b'\xff\x00'     # ble
        b'\xff\x00'     # scroll-indicator
        b'\xff\x00'     # battery
        b'\xff\x00'     # status-clock
        b'\xff\x00'     # notify-icon
        b'\xff\x00'     # bright
        b'\xbe\xe0'     # mid
        b'\xff\x00'     # ui
        b'\xff\x00'     # spot1
        b'\xff\x00'     # spot2
        b'\x00\x0f'     # contrast
    )

from gadgetbridge import *
wasp.system.schedule()