diff --git a/CHANGELOG.md b/CHANGELOG.md index e256219..b67ea7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Bigger hotspot dot for Resize cursors +- Windows resize cursors scale down +- `text` & `vertical-text` cursors scale down ## [v1.0.1] - 16 June 2021 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, }, }, ];