diff --git a/CHANGELOG.md b/CHANGELOG.md index a540c8e..403ca24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +### Changed + +- Bigger hotspot dot for Resize cursors +- Windows resize cursors scale down +- `text` & `vertical-text` cursors scale down + +### Added + +- **BreezeX-Black** variant added + ## [v1.0.1] - 16 June 2021 ### Changed diff --git a/README.md b/README.md index 4f41b0d..8e098f7 100644 --- a/README.md +++ b/README.md @@ -119,6 +119,12 @@ Extended KDE Cursor theme, Highly inspired on **KDE Breeze** for `Windows` and ` Light BreezeX Cursors

+

+ +
+ Black BreezeX Cursors +

+ ### Manual Install #### Linux/X11 diff --git a/bitmapper/src/config.ts b/bitmapper/src/config.ts index 5cfd21b..d279c06 100644 --- a/bitmapper/src/config.ts +++ b/bitmapper/src/config.ts @@ -5,22 +5,31 @@ interface Config { color: Colors; } -const breezeColor = "#4D4D4D"; -const whiteColor = "#FFFFFF"; +const breeze = "#4D4D4D"; +const white = "#FFFFFF"; +const black = "#000000"; const config: Config[] = [ { themeName: "BreezeX-Dark", color: { - base: breezeColor, - outline: whiteColor, + base: breeze, + outline: white, }, }, { themeName: "BreezeX-Light", color: { - base: whiteColor, - outline: breezeColor, + base: white, + outline: breeze, + }, + }, + + { + themeName: "BreezeX-Black", + color: { + base: black, + outline: white, }, }, ]; diff --git a/builder/Makefile b/builder/Makefile index 1d978f3..6ff28bc 100644 --- a/builder/Makefile +++ b/builder/Makefile @@ -7,7 +7,7 @@ all: clean setup build .ONESHELL: SHELL:=/bin/bash -THEMES = Dark Light +THEMES = Dark Light Black X_SIZES ?=22 24 28 32 40 48 56 64 72 80 88 96 WIN_CANVAS_SIZE ?= 32 WIN_SIZE ?= 24 diff --git a/builder/bxbuild/constants.py b/builder/bxbuild/constants.py index e44bf37..6d08fc0 100644 --- a/builder/bxbuild/constants.py +++ b/builder/bxbuild/constants.py @@ -20,9 +20,9 @@ X_CURSORS_CFG: Dict[str, Dict[str, int]] = { ########## "all-scroll.png": {"xhot": 100, "yhot": 100}, "bd_double_arrow.png": {"xhot": 98, "yhot": 96}, - "bottom_left_corner.png": {"xhot": 56, "yhot": 143}, - "bottom_right_corner.png": {"xhot": 142, "yhot": 147}, - "bottom_side.png": {"xhot": 100, "yhot": 148}, + "bottom_left_corner.png": {"xhot": 47, "yhot": 148}, + "bottom_right_corner.png": {"xhot": 147, "yhot": 148}, + "bottom_side.png": {"xhot": 100, "yhot": 164}, "center_ptr.png": {"xhot": 99, "yhot": 35}, "col-resize.png": {"xhot": 100, "yhot": 100}, "color-picker.png": {"xhot": 42, "yhot": 157}, @@ -36,7 +36,7 @@ X_CURSORS_CFG: Dict[str, Dict[str, int]] = { "hand1.png": {"xhot": 107, "yhot": 35}, "hand2.png": {"xhot": 90, "yhot": 35}, "left_ptr.png": {"xhot": 57, "yhot": 30}, - "left_side.png": {"xhot": 52, "yhot": 100}, + "left_side.png": {"xhot": 33, "yhot": 100}, "link.png": {"xhot": 57, "yhot": 30}, "move.png": {"xhot": 101, "yhot": 51}, "pencil.png": {"xhot": 38, "yhot": 156}, @@ -44,7 +44,7 @@ X_CURSORS_CFG: Dict[str, Dict[str, int]] = { "plus.png": {"xhot": 100, "yhot": 100}, "question_arrow.png": {"xhot": 57, "yhot": 30}, "right_ptr.png": {"xhot": 136, "yhot": 32}, - "right_side.png": {"xhot": 147, "yhot": 100}, + "right_side.png": {"xhot": 164, "yhot": 100}, "row-resize.png": {"xhot": 100, "yhot": 100}, "sb_down_arrow.png": {"xhot": 100, "yhot": 160}, "sb_h_double_arrow.png": {"xhot": 98, "yhot": 96}, @@ -52,9 +52,9 @@ X_CURSORS_CFG: Dict[str, Dict[str, int]] = { "sb_right_arrow.png": {"xhot": 162, "yhot": 100}, "sb_up_arrow.png": {"xhot": 100, "yhot": 38}, "sb_v_double_arrow.png": {"xhot": 98, "yhot": 96}, - "top_left_corner.png": {"xhot": 57, "yhot": 55}, - "top_right_corner.png": {"xhot": 142, "yhot": 55}, - "top_side.png": {"xhot": 100, "yhot": 52}, + "top_left_corner.png": {"xhot": 47, "yhot": 51}, + "top_right_corner.png": {"xhot": 147, "yhot": 51}, + "top_side.png": {"xhot": 100, "yhot": 35}, "vertical-text.png": {"xhot": 100, "yhot": 100}, "wayland-cursor.png": {"xhot": 100, "yhot": 100}, "X_cursor.png": {"xhot": 100, "yhot": 100}, diff --git a/svg/static/bd_double_arrow.svg b/svg/static/bd_double_arrow.svg index 4d1c066..60a59b0 100644 --- a/svg/static/bd_double_arrow.svg +++ b/svg/static/bd_double_arrow.svg @@ -1,16 +1,20 @@ - - - - - - - - - - + + + + + + + + + + + + + + @@ -21,17 +25,5 @@ - - - - - - - - - - - - diff --git a/svg/static/bottom_left_corner.svg b/svg/static/bottom_left_corner.svg index 260b94f..a595110 100644 --- a/svg/static/bottom_left_corner.svg +++ b/svg/static/bottom_left_corner.svg @@ -1,14 +1,14 @@ - - - + + + - - + + - + diff --git a/svg/static/bottom_right_corner.svg b/svg/static/bottom_right_corner.svg index 63621c9..5258d98 100644 --- a/svg/static/bottom_right_corner.svg +++ b/svg/static/bottom_right_corner.svg @@ -1,14 +1,14 @@ - - - + + + - - + + - + diff --git a/svg/static/bottom_side.svg b/svg/static/bottom_side.svg index d31c0e5..217dabb 100644 --- a/svg/static/bottom_side.svg +++ b/svg/static/bottom_side.svg @@ -1,14 +1,14 @@ - - - + + + - - + + - + diff --git a/svg/static/col-resize.svg b/svg/static/col-resize.svg index 650a513..212b0df 100644 --- a/svg/static/col-resize.svg +++ b/svg/static/col-resize.svg @@ -1,5 +1,5 @@ - - + + diff --git a/svg/static/cross.svg b/svg/static/cross.svg index f08edf2..8f8d6cc 100644 --- a/svg/static/cross.svg +++ b/svg/static/cross.svg @@ -1,30 +1,30 @@ - - - - - + + + + + - - + + - + - - + + - + - - + + - + - - + + - + diff --git a/svg/static/fd_double_arrow.svg b/svg/static/fd_double_arrow.svg index 47fdcf6..9d88729 100644 --- a/svg/static/fd_double_arrow.svg +++ b/svg/static/fd_double_arrow.svg @@ -1,16 +1,20 @@ - - - - - - - - - - + + + + + + + + + + + + + + @@ -21,17 +25,5 @@ - - - - - - - - - - - - diff --git a/svg/static/left_side.svg b/svg/static/left_side.svg index f04def7..2ab65b1 100644 --- a/svg/static/left_side.svg +++ b/svg/static/left_side.svg @@ -1,14 +1,14 @@ - - - + + + - - + + - + diff --git a/svg/static/right_side.svg b/svg/static/right_side.svg index 06d6a2f..309aacf 100644 --- a/svg/static/right_side.svg +++ b/svg/static/right_side.svg @@ -1,14 +1,14 @@ - - - + + + - - + + - + diff --git a/svg/static/row-resize.svg b/svg/static/row-resize.svg index c2772c2..808a8cf 100644 --- a/svg/static/row-resize.svg +++ b/svg/static/row-resize.svg @@ -1,5 +1,5 @@ - - + + diff --git a/svg/static/sb_h_double_arrow.svg b/svg/static/sb_h_double_arrow.svg index b772f77..335d62d 100644 --- a/svg/static/sb_h_double_arrow.svg +++ b/svg/static/sb_h_double_arrow.svg @@ -1,25 +1,22 @@ - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - + diff --git a/svg/static/sb_v_double_arrow.svg b/svg/static/sb_v_double_arrow.svg index b4d97ec..9006d6b 100644 --- a/svg/static/sb_v_double_arrow.svg +++ b/svg/static/sb_v_double_arrow.svg @@ -1,25 +1,22 @@ - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - + diff --git a/svg/static/top_left_corner.svg b/svg/static/top_left_corner.svg index e22ab1c..ed1b953 100644 --- a/svg/static/top_left_corner.svg +++ b/svg/static/top_left_corner.svg @@ -1,14 +1,14 @@ - - - + + + - - + + - + diff --git a/svg/static/top_right_corner.svg b/svg/static/top_right_corner.svg index 68c9d6d..7f0a299 100644 --- a/svg/static/top_right_corner.svg +++ b/svg/static/top_right_corner.svg @@ -1,14 +1,14 @@ - - - + + + - - + + - + diff --git a/svg/static/top_side.svg b/svg/static/top_side.svg index 8746f89..4a057ba 100644 --- a/svg/static/top_side.svg +++ b/svg/static/top_side.svg @@ -1,14 +1,14 @@ - - - + + + - - + + - + diff --git a/svg/static/vertical-text.svg b/svg/static/vertical-text.svg index 055a413..ba22ff8 100644 --- a/svg/static/vertical-text.svg +++ b/svg/static/vertical-text.svg @@ -1,5 +1,5 @@ - - + + diff --git a/svg/static/xterm.svg b/svg/static/xterm.svg index 9e7af98..789ede0 100644 --- a/svg/static/xterm.svg +++ b/svg/static/xterm.svg @@ -1,5 +1,5 @@ - - + +