aboutsummaryrefslogtreecommitdiff
path: root/thcolor/_builtin/__init__.py
blob: c9bc0d2695f9d1a3abc646ed0c39c84f93dca3c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python3
#******************************************************************************
# Copyright (C) 2019 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr>
# This file is part of the thcolor project, which is MIT-licensed.
#******************************************************************************
""" Named colors references, using various sources. """

from ._css import (CSS1Reference, CSS2Reference, CSS3Reference,
	CSS4Reference)
from ._default import DefaultReference

__all__ = ["CSS1Reference", "CSS2Reference", "CSS3Reference",
	"CSS4Reference", "DefaultReference"]

# End of file.