├── .github └── workflows │ └── lint.yml ├── .gitignore ├── .python-version ├── ColorHints.py ├── ColorHints.sublime-settings ├── Colors.gif ├── Commands.sublime-commands ├── LICENSE ├── Main.sublime-menu ├── README.md ├── lib ├── csscolors.py ├── pantone-books │ ├── pantoneCmykCoated.json │ ├── pantoneCmykUncoated.json │ ├── pantoneColorBridgeCoatedV3.json │ ├── pantoneColorBridgeUncoatedV3.json │ ├── pantoneExtendedGamutCoatedM2.json │ ├── pantoneFhCottonTcx.json │ ├── pantoneFhNylonBrightsTn.json │ ├── pantoneFhiMetallicShimmersTpmM2.json │ ├── pantoneFhiPaperTpg210NewColorsM2.json │ ├── pantoneFhiPaperTpgM2.json │ ├── pantoneFhiPolyesterTsx.json │ ├── pantoneMetallicsSolidCoatedM2.json │ ├── pantonePastelsNeonsCoatedM2.json │ ├── pantoneSkinToneGuideM2.json │ ├── pantoneSolidCoatedV3M2.json │ └── pantoneSolidUncoatedV3M2.json ├── pantone.py ├── ral.py ├── rgba.py └── util.py ├── test.md └── tox.ini /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.8 2 | -------------------------------------------------------------------------------- /ColorHints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/ColorHints.py -------------------------------------------------------------------------------- /ColorHints.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/ColorHints.sublime-settings -------------------------------------------------------------------------------- /Colors.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/Colors.gif -------------------------------------------------------------------------------- /Commands.sublime-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/Commands.sublime-commands -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/Main.sublime-menu -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/README.md -------------------------------------------------------------------------------- /lib/csscolors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/csscolors.py -------------------------------------------------------------------------------- /lib/pantone-books/pantoneCmykCoated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone-books/pantoneCmykCoated.json -------------------------------------------------------------------------------- /lib/pantone-books/pantoneCmykUncoated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone-books/pantoneCmykUncoated.json -------------------------------------------------------------------------------- /lib/pantone-books/pantoneColorBridgeCoatedV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone-books/pantoneColorBridgeCoatedV3.json -------------------------------------------------------------------------------- /lib/pantone-books/pantoneColorBridgeUncoatedV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone-books/pantoneColorBridgeUncoatedV3.json -------------------------------------------------------------------------------- /lib/pantone-books/pantoneExtendedGamutCoatedM2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone-books/pantoneExtendedGamutCoatedM2.json -------------------------------------------------------------------------------- /lib/pantone-books/pantoneFhCottonTcx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone-books/pantoneFhCottonTcx.json -------------------------------------------------------------------------------- /lib/pantone-books/pantoneFhNylonBrightsTn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone-books/pantoneFhNylonBrightsTn.json -------------------------------------------------------------------------------- /lib/pantone-books/pantoneFhiMetallicShimmersTpmM2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone-books/pantoneFhiMetallicShimmersTpmM2.json -------------------------------------------------------------------------------- /lib/pantone-books/pantoneFhiPaperTpg210NewColorsM2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone-books/pantoneFhiPaperTpg210NewColorsM2.json -------------------------------------------------------------------------------- /lib/pantone-books/pantoneFhiPaperTpgM2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone-books/pantoneFhiPaperTpgM2.json -------------------------------------------------------------------------------- /lib/pantone-books/pantoneFhiPolyesterTsx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone-books/pantoneFhiPolyesterTsx.json -------------------------------------------------------------------------------- /lib/pantone-books/pantoneMetallicsSolidCoatedM2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone-books/pantoneMetallicsSolidCoatedM2.json -------------------------------------------------------------------------------- /lib/pantone-books/pantonePastelsNeonsCoatedM2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone-books/pantonePastelsNeonsCoatedM2.json -------------------------------------------------------------------------------- /lib/pantone-books/pantoneSkinToneGuideM2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone-books/pantoneSkinToneGuideM2.json -------------------------------------------------------------------------------- /lib/pantone-books/pantoneSolidCoatedV3M2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone-books/pantoneSolidCoatedV3M2.json -------------------------------------------------------------------------------- /lib/pantone-books/pantoneSolidUncoatedV3M2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone-books/pantoneSolidUncoatedV3M2.json -------------------------------------------------------------------------------- /lib/pantone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/pantone.py -------------------------------------------------------------------------------- /lib/ral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/ral.py -------------------------------------------------------------------------------- /lib/rgba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/rgba.py -------------------------------------------------------------------------------- /lib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/lib/util.py -------------------------------------------------------------------------------- /test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braver/ColorHints/HEAD/test.md -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | --------------------------------------------------------------------------------