├── .gitignore ├── .idx └── dev.nix ├── .vs └── KritaColorPlus │ └── v17 │ └── DocumentLayout.backup.json ├── .vscode └── settings.json ├── LICENSE ├── README-italian.md ├── README.md ├── actions ├── cleanupLayers.action ├── cycle_next_brush.action ├── decrease_layer_opacity.action ├── dry_paper.action ├── dry_paper_and_pick_color.action ├── increase_layer_opacity.action ├── last_color.action ├── mix_color_because_mistake.action ├── mix_color_because_want_to_fadeout.action ├── pick_color.action ├── reset_layer_opacity_to_default.action ├── toggle_auto_mixing.action ├── toggle_dirty_brush.action └── view_single_window.action ├── install_gui.py └── pykrita ├── recent_color.desktop └── recent_color ├── TODO.md ├── __init__.py ├── __pycache__ ├── __init__.cpython-38.pyc └── recent_color.cpython-38.pyc ├── brush_cycler.py ├── brush_list_widget.py ├── color_history_docker.py ├── globals.py ├── mainDocker.py ├── mergeAllPythonFiles.py ├── mouseMonitor.py ├── recent_color.py ├── rgb.py ├── slider.py ├── spectral.py └── whichtool.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /.idx/dev.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/.idx/dev.nix -------------------------------------------------------------------------------- /.vs/KritaColorPlus/v17/DocumentLayout.backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/.vs/KritaColorPlus/v17/DocumentLayout.backup.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/LICENSE -------------------------------------------------------------------------------- /README-italian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/README-italian.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/README.md -------------------------------------------------------------------------------- /actions/cleanupLayers.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/actions/cleanupLayers.action -------------------------------------------------------------------------------- /actions/cycle_next_brush.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/actions/cycle_next_brush.action -------------------------------------------------------------------------------- /actions/decrease_layer_opacity.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/actions/decrease_layer_opacity.action -------------------------------------------------------------------------------- /actions/dry_paper.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/actions/dry_paper.action -------------------------------------------------------------------------------- /actions/dry_paper_and_pick_color.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/actions/dry_paper_and_pick_color.action -------------------------------------------------------------------------------- /actions/increase_layer_opacity.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/actions/increase_layer_opacity.action -------------------------------------------------------------------------------- /actions/last_color.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/actions/last_color.action -------------------------------------------------------------------------------- /actions/mix_color_because_mistake.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/actions/mix_color_because_mistake.action -------------------------------------------------------------------------------- /actions/mix_color_because_want_to_fadeout.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/actions/mix_color_because_want_to_fadeout.action -------------------------------------------------------------------------------- /actions/pick_color.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/actions/pick_color.action -------------------------------------------------------------------------------- /actions/reset_layer_opacity_to_default.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/actions/reset_layer_opacity_to_default.action -------------------------------------------------------------------------------- /actions/toggle_auto_mixing.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/actions/toggle_auto_mixing.action -------------------------------------------------------------------------------- /actions/toggle_dirty_brush.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/actions/toggle_dirty_brush.action -------------------------------------------------------------------------------- /actions/view_single_window.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/actions/view_single_window.action -------------------------------------------------------------------------------- /install_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/install_gui.py -------------------------------------------------------------------------------- /pykrita/recent_color.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/pykrita/recent_color.desktop -------------------------------------------------------------------------------- /pykrita/recent_color/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/pykrita/recent_color/TODO.md -------------------------------------------------------------------------------- /pykrita/recent_color/__init__.py: -------------------------------------------------------------------------------- 1 | from .recent_color import MyExtension -------------------------------------------------------------------------------- /pykrita/recent_color/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/pykrita/recent_color/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /pykrita/recent_color/__pycache__/recent_color.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/pykrita/recent_color/__pycache__/recent_color.cpython-38.pyc -------------------------------------------------------------------------------- /pykrita/recent_color/brush_cycler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/pykrita/recent_color/brush_cycler.py -------------------------------------------------------------------------------- /pykrita/recent_color/brush_list_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/pykrita/recent_color/brush_list_widget.py -------------------------------------------------------------------------------- /pykrita/recent_color/color_history_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/pykrita/recent_color/color_history_docker.py -------------------------------------------------------------------------------- /pykrita/recent_color/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/pykrita/recent_color/globals.py -------------------------------------------------------------------------------- /pykrita/recent_color/mainDocker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/pykrita/recent_color/mainDocker.py -------------------------------------------------------------------------------- /pykrita/recent_color/mergeAllPythonFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/pykrita/recent_color/mergeAllPythonFiles.py -------------------------------------------------------------------------------- /pykrita/recent_color/mouseMonitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/pykrita/recent_color/mouseMonitor.py -------------------------------------------------------------------------------- /pykrita/recent_color/recent_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/pykrita/recent_color/recent_color.py -------------------------------------------------------------------------------- /pykrita/recent_color/rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/pykrita/recent_color/rgb.py -------------------------------------------------------------------------------- /pykrita/recent_color/slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/pykrita/recent_color/slider.py -------------------------------------------------------------------------------- /pykrita/recent_color/spectral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/pykrita/recent_color/spectral.py -------------------------------------------------------------------------------- /pykrita/recent_color/whichtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seguso/KritaColorPlus/HEAD/pykrita/recent_color/whichtool.py --------------------------------------------------------------------------------