forked from dcf21/astrolabe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththemes.py
28 lines (26 loc) · 973 Bytes
/
themes.py
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
# theme.py
# -*- coding: utf-8 -*-
#
# The python script in this file defines the available themes for the astrolabe.
#
# Copyright (C) 2019 André Werlang <[email protected]>
#
# This code 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 of the License, or (at your option) any later
# version.
#
# You should have received a copy of the GNU General Public License along with
# this file; if not, write to the Free Software Foundation, Inc., 51 Franklin
# Street, Fifth Floor, Boston, MA 02110-1301, USA
# ----------------------------------------------------------------------------
themes = {
"default":
{
"background": (1, 1, 1, 0),
"text": (0, 0, 0, 1),
"lines": (0, 0, 0, 1),
"stick_figures": (0.75, 0.75, 0.75, 1),
"alt_az": (0.75, 0.75, 0.75, 1)
}
}