👔 BreezeX-Black bitmapper config init
This commit is contained in:
@@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Bigger hotspot dot for Resize cursors
|
- Bigger hotspot dot for Resize cursors
|
||||||
|
- Windows resize cursors scale down
|
||||||
|
- `text` & `vertical-text` cursors scale down
|
||||||
|
|
||||||
## [v1.0.1] - 16 June 2021
|
## [v1.0.1] - 16 June 2021
|
||||||
|
|
||||||
|
|||||||
+15
-6
@@ -5,22 +5,31 @@ interface Config {
|
|||||||
color: Colors;
|
color: Colors;
|
||||||
}
|
}
|
||||||
|
|
||||||
const breezeColor = "#4D4D4D";
|
const breeze = "#4D4D4D";
|
||||||
const whiteColor = "#FFFFFF";
|
const white = "#FFFFFF";
|
||||||
|
const black = "#000000";
|
||||||
|
|
||||||
const config: Config[] = [
|
const config: Config[] = [
|
||||||
{
|
{
|
||||||
themeName: "BreezeX-Dark",
|
themeName: "BreezeX-Dark",
|
||||||
color: {
|
color: {
|
||||||
base: breezeColor,
|
base: breeze,
|
||||||
outline: whiteColor,
|
outline: white,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
themeName: "BreezeX-Light",
|
themeName: "BreezeX-Light",
|
||||||
color: {
|
color: {
|
||||||
base: whiteColor,
|
base: white,
|
||||||
outline: breezeColor,
|
outline: breeze,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
themeName: "BreezeX-Black",
|
||||||
|
color: {
|
||||||
|
base: black,
|
||||||
|
outline: white,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user