├── .gitignore ├── src ├── beam.cur ├── busy.ani ├── help.cur ├── link.cur ├── move.cur ├── pen.cur ├── arrow.cur ├── cross.cur ├── beam_v2.cur ├── link_v2.cur ├── move_v2.cur ├── special.cur ├── vertical.cur ├── working.ani ├── diagonal_1.cur ├── diagonal_2.cur ├── horizontal.cur ├── unavailable.cur ├── vertical_v2.cur ├── arrow_no_tail.cur ├── help_no_tail.cur ├── horizontal_v2.cur ├── unavailable_v2.cur ├── unavailable_v3.cur ├── working_no_tail.ani ├── arrow_tail_detached.cur ├── help_tail_detached.cur ├── arrow_no_tail_smaller.cur ├── working_tail_detached.ani └── working_tail_detached_v2.ani ├── screenshots ├── arrow.png ├── title.png ├── cursors │ ├── pen.png │ ├── arrow.png │ ├── beam.png │ ├── busy.gif │ ├── busy.png │ ├── cross.png │ ├── help.png │ ├── link.png │ ├── move.png │ ├── beam_v2.png │ ├── busy_old.png │ ├── link_v2.png │ ├── move_v2.png │ ├── special.png │ ├── vertical.png │ ├── working.gif │ ├── working.png │ ├── diagonal_1.png │ ├── diagonal_2.png │ ├── horizontal.png │ ├── arrow_no_tail.png │ ├── help_no_tail.png │ ├── horizontal_v2.png │ ├── unavailable.png │ ├── vertical_v2.png │ ├── unavailable_v2.png │ ├── unavailable_v3.png │ ├── working_no_tail.gif │ ├── working_no_tail.png │ ├── help_tail_detached.png │ ├── arrow_tail_detached.png │ ├── working_no_tail_old.png │ ├── arrow_no_tail_smaller.png │ ├── working_tail_detached.gif │ ├── working_tail_detached.png │ ├── working_tail_detached_v2.gif │ └── working_tail_detached_v2.png ├── arrow_no_tail.png ├── cursors_single │ ├── pen.png │ ├── arrow.png │ ├── beam.png │ ├── busy.gif │ ├── cross.png │ ├── help.png │ ├── link.png │ ├── move.png │ ├── beam_v2.png │ ├── link_v2.png │ ├── move_v2.png │ ├── special.png │ ├── vertical.png │ ├── working.gif │ ├── diagonal_1.png │ ├── diagonal_2.png │ ├── horizontal.png │ ├── unavailable.png │ ├── vertical_v2.png │ ├── arrow_no_tail.png │ ├── help_no_tail.png │ ├── horizontal_v2.png │ ├── unavailable_v2.png │ ├── unavailable_v3.png │ ├── working_no_tail.gif │ ├── help_tail_detached.png │ ├── arrow_no_tail_smaller.png │ ├── arrow_tail_detached.png │ ├── working_tail_detached.gif │ └── working_tail_detached_v2.gif ├── all_cursors_no_title.png ├── all_cursors_with_title.png ├── illustration_of_inversion.gif └── source │ └── all_cursors_with_title_source.kra ├── .github └── FUNDING.yml ├── LICENSE ├── CHANGELOG.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip -------------------------------------------------------------------------------- /src/beam.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/beam.cur -------------------------------------------------------------------------------- /src/busy.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/busy.ani -------------------------------------------------------------------------------- /src/help.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/help.cur -------------------------------------------------------------------------------- /src/link.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/link.cur -------------------------------------------------------------------------------- /src/move.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/move.cur -------------------------------------------------------------------------------- /src/pen.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/pen.cur -------------------------------------------------------------------------------- /src/arrow.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/arrow.cur -------------------------------------------------------------------------------- /src/cross.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/cross.cur -------------------------------------------------------------------------------- /src/beam_v2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/beam_v2.cur -------------------------------------------------------------------------------- /src/link_v2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/link_v2.cur -------------------------------------------------------------------------------- /src/move_v2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/move_v2.cur -------------------------------------------------------------------------------- /src/special.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/special.cur -------------------------------------------------------------------------------- /src/vertical.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/vertical.cur -------------------------------------------------------------------------------- /src/working.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/working.ani -------------------------------------------------------------------------------- /src/diagonal_1.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/diagonal_1.cur -------------------------------------------------------------------------------- /src/diagonal_2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/diagonal_2.cur -------------------------------------------------------------------------------- /src/horizontal.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/horizontal.cur -------------------------------------------------------------------------------- /src/unavailable.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/unavailable.cur -------------------------------------------------------------------------------- /src/vertical_v2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/vertical_v2.cur -------------------------------------------------------------------------------- /screenshots/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/arrow.png -------------------------------------------------------------------------------- /screenshots/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/title.png -------------------------------------------------------------------------------- /src/arrow_no_tail.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/arrow_no_tail.cur -------------------------------------------------------------------------------- /src/help_no_tail.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/help_no_tail.cur -------------------------------------------------------------------------------- /src/horizontal_v2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/horizontal_v2.cur -------------------------------------------------------------------------------- /src/unavailable_v2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/unavailable_v2.cur -------------------------------------------------------------------------------- /src/unavailable_v3.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/unavailable_v3.cur -------------------------------------------------------------------------------- /src/working_no_tail.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/working_no_tail.ani -------------------------------------------------------------------------------- /screenshots/cursors/pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/pen.png -------------------------------------------------------------------------------- /src/arrow_tail_detached.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/arrow_tail_detached.cur -------------------------------------------------------------------------------- /src/help_tail_detached.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/help_tail_detached.cur -------------------------------------------------------------------------------- /screenshots/arrow_no_tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/arrow_no_tail.png -------------------------------------------------------------------------------- /screenshots/cursors/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/arrow.png -------------------------------------------------------------------------------- /screenshots/cursors/beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/beam.png -------------------------------------------------------------------------------- /screenshots/cursors/busy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/busy.gif -------------------------------------------------------------------------------- /screenshots/cursors/busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/busy.png -------------------------------------------------------------------------------- /screenshots/cursors/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/cross.png -------------------------------------------------------------------------------- /screenshots/cursors/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/help.png -------------------------------------------------------------------------------- /screenshots/cursors/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/link.png -------------------------------------------------------------------------------- /screenshots/cursors/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/move.png -------------------------------------------------------------------------------- /src/arrow_no_tail_smaller.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/arrow_no_tail_smaller.cur -------------------------------------------------------------------------------- /src/working_tail_detached.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/working_tail_detached.ani -------------------------------------------------------------------------------- /screenshots/cursors/beam_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/beam_v2.png -------------------------------------------------------------------------------- /screenshots/cursors/busy_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/busy_old.png -------------------------------------------------------------------------------- /screenshots/cursors/link_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/link_v2.png -------------------------------------------------------------------------------- /screenshots/cursors/move_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/move_v2.png -------------------------------------------------------------------------------- /screenshots/cursors/special.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/special.png -------------------------------------------------------------------------------- /screenshots/cursors/vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/vertical.png -------------------------------------------------------------------------------- /screenshots/cursors/working.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/working.gif -------------------------------------------------------------------------------- /screenshots/cursors/working.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/working.png -------------------------------------------------------------------------------- /src/working_tail_detached_v2.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/src/working_tail_detached_v2.ani -------------------------------------------------------------------------------- /screenshots/cursors/diagonal_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/diagonal_1.png -------------------------------------------------------------------------------- /screenshots/cursors/diagonal_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/diagonal_2.png -------------------------------------------------------------------------------- /screenshots/cursors/horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/horizontal.png -------------------------------------------------------------------------------- /screenshots/cursors_single/pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/pen.png -------------------------------------------------------------------------------- /screenshots/all_cursors_no_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/all_cursors_no_title.png -------------------------------------------------------------------------------- /screenshots/cursors/arrow_no_tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/arrow_no_tail.png -------------------------------------------------------------------------------- /screenshots/cursors/help_no_tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/help_no_tail.png -------------------------------------------------------------------------------- /screenshots/cursors/horizontal_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/horizontal_v2.png -------------------------------------------------------------------------------- /screenshots/cursors/unavailable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/unavailable.png -------------------------------------------------------------------------------- /screenshots/cursors/vertical_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/vertical_v2.png -------------------------------------------------------------------------------- /screenshots/cursors_single/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/arrow.png -------------------------------------------------------------------------------- /screenshots/cursors_single/beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/beam.png -------------------------------------------------------------------------------- /screenshots/cursors_single/busy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/busy.gif -------------------------------------------------------------------------------- /screenshots/cursors_single/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/cross.png -------------------------------------------------------------------------------- /screenshots/cursors_single/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/help.png -------------------------------------------------------------------------------- /screenshots/cursors_single/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/link.png -------------------------------------------------------------------------------- /screenshots/cursors_single/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/move.png -------------------------------------------------------------------------------- /screenshots/all_cursors_with_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/all_cursors_with_title.png -------------------------------------------------------------------------------- /screenshots/cursors/unavailable_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/unavailable_v2.png -------------------------------------------------------------------------------- /screenshots/cursors/unavailable_v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/unavailable_v3.png -------------------------------------------------------------------------------- /screenshots/cursors/working_no_tail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/working_no_tail.gif -------------------------------------------------------------------------------- /screenshots/cursors/working_no_tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/working_no_tail.png -------------------------------------------------------------------------------- /screenshots/cursors_single/beam_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/beam_v2.png -------------------------------------------------------------------------------- /screenshots/cursors_single/link_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/link_v2.png -------------------------------------------------------------------------------- /screenshots/cursors_single/move_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/move_v2.png -------------------------------------------------------------------------------- /screenshots/cursors_single/special.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/special.png -------------------------------------------------------------------------------- /screenshots/cursors_single/vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/vertical.png -------------------------------------------------------------------------------- /screenshots/cursors_single/working.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/working.gif -------------------------------------------------------------------------------- /screenshots/cursors/help_tail_detached.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/help_tail_detached.png -------------------------------------------------------------------------------- /screenshots/cursors_single/diagonal_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/diagonal_1.png -------------------------------------------------------------------------------- /screenshots/cursors_single/diagonal_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/diagonal_2.png -------------------------------------------------------------------------------- /screenshots/cursors_single/horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/horizontal.png -------------------------------------------------------------------------------- /screenshots/cursors_single/unavailable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/unavailable.png -------------------------------------------------------------------------------- /screenshots/cursors_single/vertical_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/vertical_v2.png -------------------------------------------------------------------------------- /screenshots/illustration_of_inversion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/illustration_of_inversion.gif -------------------------------------------------------------------------------- /screenshots/cursors/arrow_tail_detached.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/arrow_tail_detached.png -------------------------------------------------------------------------------- /screenshots/cursors/working_no_tail_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/working_no_tail_old.png -------------------------------------------------------------------------------- /screenshots/cursors_single/arrow_no_tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/arrow_no_tail.png -------------------------------------------------------------------------------- /screenshots/cursors_single/help_no_tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/help_no_tail.png -------------------------------------------------------------------------------- /screenshots/cursors_single/horizontal_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/horizontal_v2.png -------------------------------------------------------------------------------- /screenshots/cursors/arrow_no_tail_smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/arrow_no_tail_smaller.png -------------------------------------------------------------------------------- /screenshots/cursors/working_tail_detached.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/working_tail_detached.gif -------------------------------------------------------------------------------- /screenshots/cursors/working_tail_detached.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/working_tail_detached.png -------------------------------------------------------------------------------- /screenshots/cursors_single/unavailable_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/unavailable_v2.png -------------------------------------------------------------------------------- /screenshots/cursors_single/unavailable_v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/unavailable_v3.png -------------------------------------------------------------------------------- /screenshots/cursors_single/working_no_tail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/working_no_tail.gif -------------------------------------------------------------------------------- /screenshots/cursors/working_tail_detached_v2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/working_tail_detached_v2.gif -------------------------------------------------------------------------------- /screenshots/cursors/working_tail_detached_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors/working_tail_detached_v2.png -------------------------------------------------------------------------------- /screenshots/cursors_single/help_tail_detached.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/help_tail_detached.png -------------------------------------------------------------------------------- /screenshots/cursors_single/arrow_no_tail_smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/arrow_no_tail_smaller.png -------------------------------------------------------------------------------- /screenshots/cursors_single/arrow_tail_detached.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/arrow_tail_detached.png -------------------------------------------------------------------------------- /screenshots/cursors_single/working_tail_detached.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/working_tail_detached.gif -------------------------------------------------------------------------------- /screenshots/source/all_cursors_with_title_source.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/source/all_cursors_with_title_source.kra -------------------------------------------------------------------------------- /screenshots/cursors_single/working_tail_detached_v2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emvaized/modern_inverted_mouse_cursors/HEAD/screenshots/cursors_single/working_tail_detached_v2.gif -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 3 | patreon: emvaized 4 | open_collective: # Replace with a single Open Collective username 5 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 6 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 7 | liberapay: # Replace with a single Liberapay username 8 | issuehunt: # Replace with a single IssueHunt username 9 | otechie: # Replace with a single Otechie username 10 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 11 | liberapay: emvaized 12 | ko_fi: emvaized -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 emvaized (Max Tsyba) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ### 3.6.1 2 | - Removed the assymetric corner pixel in regular arrow cursors (`arrow`, `help` and `working`) 3 | - Fixed some visual inconsitencies in the `working_tail_detached` cursor 4 | - Renamed some cursors for better clarity: 5 | -- `vertical_line` to `vertical_v2` 6 | -- `horizontal_line` to `horizontal_v2` 7 | -- `move_alt` to `move_v2` 8 | 9 | ### 3.6.0 10 | 11 | Added new "tail detached" cursors (design proposed by **_aicraglednay**): 12 | - `arrow_tail_detached`
13 | - `working_tail_detached`
14 | - `working_tail_detached_v2`
15 | 16 | Added another new cursor: 17 | - `unavailable_v3`
18 | 19 | New table with all available cursors is available in the [Showcase](https://github.com/emvaized/modern_inverted_mouse_cursors?tab=readme-ov-file#showcase)! 20 | 21 | ### 3.5 22 | - Added new fancy loading cursors (`busy` and 2 `working` variants) — only 32px versions for now. Original loading cursors (with clock) moved to the "old" folder 23 | - All cursors were converted to 1-bit color depth for better compatibility with apps. They also weight much less now (~2kbs instead of ~22kbs per cursor) 24 | - Updated `beam` cursor for slightly sharper tips 25 | - Updated `unavailable_v2` cursor — it's now centered and a little bit bolder 26 | - All move/resize cursors received slightly rounded tips 27 | - Removed original `link` cursor — `link_v2` now became the new `link`, and `link_v3` became `link_v2` 28 | - Swapped `diagonal_1` and `diagonal_2` cursors to be consistent with their naming in the Control panel 29 | 30 | ### 3.0 31 | - Added new cursors: 32 | -- `unavailable_v2` (default now) 33 | -- `pen` 34 | -- `special` 35 | -- `help_no_tail` 36 | -- `link_v3` with sharper bottom-right corner (default in "no-tail" theme) 37 | 38 | - Updated `beam` cursor for slightly sharper tips 39 | - Updated `move` and all "resize" cursors to have consistent center dot size 40 | - Renamed "no_tail" to "no_tail_smaller", and "no_tail_v2" cursors to just "no_tail" (default in "no-tail" theme) 41 | - Added 2 `install.inf` installers (for regular and no-tail themes) 42 | 43 | ### 2.0 44 | - `busy` cursor now has slightly bolder outline in smaller sizes 45 | - added `link_v2` cursor - it has a slightly more refined shape and no finger lines on top 46 | - `arrow_no_tail_bigger` replaced with `arrow_no_tail_v2`. It has slightly more rounded corners and bolder outline compared to regular cursor 47 | 48 | ### 1.0 49 | Initial release 50 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Modern Inverted Mouse Cursors for Windows 2 | 3 | [![GitHub Release](https://img.shields.io/github/v/release/emvaized/modern_inverted_mouse_cursors?&label=latest+release)](https://github.com/emvaized/modern_inverted_mouse_cursors/releases) 4 | ![GitHub Downloads (specific asset, all releases)](https://img.shields.io/github/downloads/emvaized/modern_inverted_mouse_cursors/total?label=downloads&logo=github) 5 | [![DeviantArt Views](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fbackend.deviantart.com%2Foembed%3Furl%3Dhttps%3A%2F%2Fwww.deviantart.com%2Femvaized%2Fart%2FModern-Inverted-Mouse-Cursors-for-Windows-10-11-1016675934&query=%24.community.statistics._attributes.views&logo=DeviantArt&logoColor=00e59b&label=views&labelColor=black&color=grey)](https://www.deviantart.com/emvaized/art/Modern-Inverted-Mouse-Cursors-for-Windows-10-11-1016675934) 6 | 8 | 9 | 10 | 11 | 12 | ### ❤️ Support this project by downloading it from [Patreon](https://www.patreon.com/emvaized/shop/modern-inverted-mouse-cursors-for-10-11-924356) 13 | 14 | This project aims to recreate standard inverted mouse cursors with a more modern design. This cursor inverts the colors behind it, and this way it always stands out no matter the background. Although this feature was originally designed for people with vision problems, others could greatly benefit from it as well! 15 | 16 | Original inverted mouse cursors, available in Windows out the box, hasn't been updated for decades and look quite outdated. This project intends to fix it by providing overhauled and modern inverted mouse cursors. Their design is mostly inspired by standard Aero mouse cursor from Windows 10/11, and few design changes were made to improve visibility specifically for inverted mouse cursors. 17 | 18 | All cursors invert colors behind them, e.g. they become white on dark background, and black on light background:   19 | 20 | 21 | | ![illustration of inversion](./screenshots/illustration_of_inversion.gif) | 22 | |-| 23 | 24 | With this cursor pack you will never lose your cursor on the screen again! Just your mouse it a little bit, and you will immediately notice the motion. 25 | 26 | ## Showcase 27 | 28 | 29 | 30 | 31 | ### Main cursor styles 32 | 33 | | | Regular | No tail | Tail detached | 34 | |-----------------------------|----------------------------------------------------------------|---------------------------------------------------------------|-------------------------------------------------------------| 35 | | `arrow` | | | | 36 | | `working` | | | or | 37 | | `help` | | | | 38 | 39 | 40 | ### Other cursors and their variants 41 | | Cursor name | Image | Cursor name | Image | 42 | |----------------------------|-----------------------------------------------------------------|----------------------------|-----------------------------------------------------------------| 43 | `beam` | | `beam_v2` | | 44 | `busy` | | `cross` | | 45 | `diagonal_1` | | `diagonal_2` | | 46 | `horizontal` | | `horizontal_v2` | | 47 | | `link` | | `link_v2` | | 48 | | `move` | | `move_v2` | | 49 | | `pen` | | `special` | | 50 | | `unavailable` | | `unavailable_v2` | | 51 | | `unavailable_v3` | | `vertical` | | 52 | | `vertical_v2` | | `working_tail_detached` | 53 | 54 | 55 | 56 | 57 | ## How to install: 58 | 1. Download the [latest release](https://www.patreon.com/emvaized/shop/modern-inverted-mouse-cursors-for-10-11-924356) 59 | 2. Extract downloaded .zip archive to any folder 60 | 3. Locate `cursors/Install.inf` file for "regular" or "no tail" style, right click on that `.inf` file and select "Install" 61 | 3. Open Control Panel and navigate to "Mouse Properties" > "Pointers" 62 | 4. Select the style you installed and click "Apply" 63 | 5. (optional) Double click any cursor type and select any other desired cursor from the extracted folder, if you want alternative version 64 | 65 | ## How to change specific cursors? 66 | 67 | In the same window (Control panel > Mouse Properties > Pointers) double click any type of the cursor, and then you can select the alternative version from the folder to which you have previously extracted the .zip archive. Some cursors have alternative design versions which you may prefer more! 68 | 69 | ## How to modify cursors? 70 | All cursors were created using [Realworld Cursor Editor](http://www.rw-designer.com/cursor-maker) — you can use this free tool to modify them for your needs! In order to draw an inverted cursor, you have to set your brush to use fully transparent white color (`00FFFFFF`), along with cursor's color depth set to anything other than the default 32-bit color depth. 71 | 72 |
73 | Read more about the color depth (1-bit) 74 | 75 | >Color inversion feature is not supported for regular 32-bit cursors (the ones most people use), it is possible only in 1-, 4-, 8- and 24-bit cursors. But this also leads to semitransparency not being available for us — all pixels in inverted cursors can then only be either fully opaque, transparent or inverted. That's why you may notice some chopiness on curves in this cursor pack (so called pixel ladders), especially when we need to show some circle shape. 76 | 77 | >At first I made these cursors 24-bit, but I noticed that in some apps (Microsoft Edge, Krita, CS2) in some occasions cursor suddenly stops inverting colors behind it and becomes all-white, with even black borders dissapearing. Maybe it's some videodrivers issue specific to my computer. But I found out that it doesn't happen if cursor is set to 1-bit mode (black and white) — cursor may still flicker in such situations, but it keeps showing black borders and remains clearly visible. 78 | 79 | >Therefore I converted most of cursors in this pack to 1-bit color depth, and as an upside, their size is greatly smaller than regular version (2.19kbs per cursor compared to 22.9kbs), while they look and feel pretty much the same. Also, default inverted cursors in Windows are also 1-bit, so it's probably the best way to do it. However, in the future if we decide to add some colorful elements to cursors, and no longer stick to the current black'n'white design, it may be needed to increase the color depth. 80 |
81 | 82 | ## Support ❤️ 83 | If you really enjoy this project, please consider supporting its further development by making a small donation using one of the ways below! 84 | 85 | Support on Ko-fi   Donate using Liberapay   Donate Bitcoin --------------------------------------------------------------------------------