├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.rst ├── appveyor.yml ├── colorclass ├── __init__.py ├── __main__.py ├── codes.py ├── color.py ├── core.py ├── parse.py ├── search.py ├── toggles.py └── windows.py ├── example.png ├── example.py ├── example_windows.png ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── screenshot.py ├── sub_box_green_win10.bmp ├── sub_box_green_winxp.bmp ├── sub_box_sans_win10.bmp ├── sub_box_sans_winxp.bmp ├── sub_red_dark_fg_win10.bmp ├── sub_red_dark_fg_winxp.bmp ├── sub_red_light_fg_win10.bmp ├── sub_red_light_fg_winxp.bmp ├── sub_red_sans_win10.bmp ├── sub_red_sans_winxp.bmp ├── test___main__.py ├── test_codes.py ├── test_color.py ├── test_core.py ├── test_example.py ├── test_parse.py ├── test_search.py ├── test_toggles.py └── test_windows.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/README.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/appveyor.yml -------------------------------------------------------------------------------- /colorclass/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/colorclass/__init__.py -------------------------------------------------------------------------------- /colorclass/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/colorclass/__main__.py -------------------------------------------------------------------------------- /colorclass/codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/colorclass/codes.py -------------------------------------------------------------------------------- /colorclass/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/colorclass/color.py -------------------------------------------------------------------------------- /colorclass/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/colorclass/core.py -------------------------------------------------------------------------------- /colorclass/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/colorclass/parse.py -------------------------------------------------------------------------------- /colorclass/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/colorclass/search.py -------------------------------------------------------------------------------- /colorclass/toggles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/colorclass/toggles.py -------------------------------------------------------------------------------- /colorclass/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/colorclass/windows.py -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/example.png -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/example.py -------------------------------------------------------------------------------- /example_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/example_windows.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Allows importing from conftest.""" 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/screenshot.py -------------------------------------------------------------------------------- /tests/sub_box_green_win10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/sub_box_green_win10.bmp -------------------------------------------------------------------------------- /tests/sub_box_green_winxp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/sub_box_green_winxp.bmp -------------------------------------------------------------------------------- /tests/sub_box_sans_win10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/sub_box_sans_win10.bmp -------------------------------------------------------------------------------- /tests/sub_box_sans_winxp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/sub_box_sans_winxp.bmp -------------------------------------------------------------------------------- /tests/sub_red_dark_fg_win10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/sub_red_dark_fg_win10.bmp -------------------------------------------------------------------------------- /tests/sub_red_dark_fg_winxp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/sub_red_dark_fg_winxp.bmp -------------------------------------------------------------------------------- /tests/sub_red_light_fg_win10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/sub_red_light_fg_win10.bmp -------------------------------------------------------------------------------- /tests/sub_red_light_fg_winxp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/sub_red_light_fg_winxp.bmp -------------------------------------------------------------------------------- /tests/sub_red_sans_win10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/sub_red_sans_win10.bmp -------------------------------------------------------------------------------- /tests/sub_red_sans_winxp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/sub_red_sans_winxp.bmp -------------------------------------------------------------------------------- /tests/test___main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/test___main__.py -------------------------------------------------------------------------------- /tests/test_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/test_codes.py -------------------------------------------------------------------------------- /tests/test_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/test_color.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/test_example.py -------------------------------------------------------------------------------- /tests/test_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/test_parse.py -------------------------------------------------------------------------------- /tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/test_search.py -------------------------------------------------------------------------------- /tests/test_toggles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/test_toggles.py -------------------------------------------------------------------------------- /tests/test_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tests/test_windows.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robpol86/colorclass/HEAD/tox.ini --------------------------------------------------------------------------------