summaryrefslogtreecommitdiff
path: root/src/theme.py
blob: 4bda7e1ec1f0d634173f54130dea8dc8e53f94a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

class Theme:
    def __init__(self, colors, comp_colors, wallpaper):
        self.colors = colors
        self.comp_colors = comp_colors
        self.wallpaper = wallpaper
    def toDict(self):
        return {
                "colors"     : self.colors,
                "comp_colors": self.comp_colors,
                "wallpaper"  : self.wallpaper
                }