We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca461e0 commit 7ef205fCopy full SHA for 7ef205f
src/pycolorit/_data/README.md
@@ -0,0 +1,6 @@
1
+# Package Data Files
2
+
3
+## `css-named-colors.json`
4
5
+### References
6
+- https://github.com/bahamas10/css-color-names/blob/master/css-color-names.json
src/pycolorit/data.py
@@ -13,6 +13,10 @@ def css_named_colors() -> dict:
13
-------
14
dict
15
A dictionary of named CSS colors.
16
17
+ References
18
+ ----------
19
+ - https://github.com/bahamas10/css-color-names/blob/master/css-color-names.json
20
"""
21
filepath = _data_dir_path / "css-named-colors.json"
22
return _json.loads(filepath.read_bytes())
0 commit comments