aboutsummaryrefslogtreecommitdiff
path: root/thcolor/decoders/__init__.py
blob: f2d1863ccc36a6dae4c6a0bd172832d631c65c1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python3
# *****************************************************************************
# Copyright (C) 2019-2022 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr>
# This file is part of the thcolor project, which is MIT-licensed.
# *****************************************************************************
""" Function and data reference. """

from .base import ColorDecoder, MetaColorDecoder, alias, fallback
from .builtin import (
    CSS1ColorDecoder, CSS2ColorDecoder, CSS3ColorDecoder,
    CSS4ColorDecoder, DefaultColorDecoder
)

__all__ = [
    'ColorDecoder', 'CSS1ColorDecoder', 'CSS2ColorDecoder',
    'CSS3ColorDecoder', 'CSS4ColorDecoder', 'DefaultColorDecoder',
    'MetaColorDecoder', 'alias', 'fallback',
]

# End of file.