Make color module objects available to PCN
This commit is contained in:
parent
64c0998a68
commit
1af1d30c48
|
@ -4,7 +4,17 @@ from typing import TYPE_CHECKING, Any, Dict, Iterator
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from .section import Section
|
from .section import Section
|
||||||
|
|
||||||
PCN_GLOBALS: Dict[str, Any] = {}
|
from .. import color
|
||||||
|
|
||||||
|
PCN_GLOBALS: Dict[str, Any] = {
|
||||||
|
"color": color.Color,
|
||||||
|
"hsluv": color.hsluv,
|
||||||
|
"hsluva": color.hsluva,
|
||||||
|
"hsl": color.hsl,
|
||||||
|
"hsla": color.hsla,
|
||||||
|
"rgb": color.rgb,
|
||||||
|
"rgba": color.rgba,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
class GlobalsDict(UserDict):
|
class GlobalsDict(UserDict):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user