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 @@
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 @@