├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── __pycache__ ├── __init__.cpython-312.pyc ├── color_converter.cpython-312.pyc ├── colors.cpython-312.pyc └── preview.cpython-312.pyc ├── color_converter.py ├── colors.py ├── examples └── preview_example.py ├── logo.png └── preview.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebupelka8/CPalette/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebupelka8/CPalette/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebupelka8/CPalette/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebupelka8/CPalette/HEAD/__init__.py -------------------------------------------------------------------------------- /__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebupelka8/CPalette/HEAD/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/color_converter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebupelka8/CPalette/HEAD/__pycache__/color_converter.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/colors.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebupelka8/CPalette/HEAD/__pycache__/colors.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/preview.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebupelka8/CPalette/HEAD/__pycache__/preview.cpython-312.pyc -------------------------------------------------------------------------------- /color_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebupelka8/CPalette/HEAD/color_converter.py -------------------------------------------------------------------------------- /colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebupelka8/CPalette/HEAD/colors.py -------------------------------------------------------------------------------- /examples/preview_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebupelka8/CPalette/HEAD/examples/preview_example.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebupelka8/CPalette/HEAD/logo.png -------------------------------------------------------------------------------- /preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebupelka8/CPalette/HEAD/preview.py --------------------------------------------------------------------------------