aboutsummaryrefslogtreecommitdiff
path: root/thcolor/_builtin/__init__.py
blob: 3b77cf334c5ffd737d28473c6126b935553ea142 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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)

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

# End of file.