diff --git a/dist/extension.zip b/dist/extension.zip index ba885cb..d65dd81 100644 Binary files a/dist/extension.zip and b/dist/extension.zip differ diff --git a/dist/extension/birb.js b/dist/extension/birb.js index fbc4a8a..e209bc1 100644 --- a/dist/extension/birb.js +++ b/dist/extension/birb.js @@ -668,8 +668,8 @@ [PALETTE.FEATHER_SPINE]: "#373737", [PALETTE.HOOD]: colors.face, [PALETTE.EYEBROW]: colors.face, - [PALETTE.UPPER_EYELID]: colors.face || colors.eyebrow, - [PALETTE.UPPER_CORNER_EYE]: colors.face || colors.eyebrow, + [PALETTE.UPPER_EYELID]: colors.eyebrow || colors.face, + [PALETTE.UPPER_CORNER_EYE]: colors.eyebrow || colors.face, [PALETTE.BEHIND_EYE]: colors.face, [PALETTE.CORNER_EYE]: colors.face, [PALETTE.TEMPLE]: colors.face, diff --git a/dist/obsidian/main.js b/dist/obsidian/main.js index 6c7935a..dd63d44 100644 --- a/dist/obsidian/main.js +++ b/dist/obsidian/main.js @@ -673,8 +673,8 @@ module.exports = class PocketBird extends Plugin { [PALETTE.FEATHER_SPINE]: "#373737", [PALETTE.HOOD]: colors.face, [PALETTE.EYEBROW]: colors.face, - [PALETTE.UPPER_EYELID]: colors.face || colors.eyebrow, - [PALETTE.UPPER_CORNER_EYE]: colors.face || colors.eyebrow, + [PALETTE.UPPER_EYELID]: colors.eyebrow || colors.face, + [PALETTE.UPPER_CORNER_EYE]: colors.eyebrow || colors.face, [PALETTE.BEHIND_EYE]: colors.face, [PALETTE.CORNER_EYE]: colors.face, [PALETTE.TEMPLE]: colors.face, diff --git a/dist/userscript/birb.user.js b/dist/userscript/birb.user.js index 789d5a3..5dab9c9 100644 --- a/dist/userscript/birb.user.js +++ b/dist/userscript/birb.user.js @@ -682,8 +682,8 @@ [PALETTE.FEATHER_SPINE]: "#373737", [PALETTE.HOOD]: colors.face, [PALETTE.EYEBROW]: colors.face, - [PALETTE.UPPER_EYELID]: colors.face || colors.eyebrow, - [PALETTE.UPPER_CORNER_EYE]: colors.face || colors.eyebrow, + [PALETTE.UPPER_EYELID]: colors.eyebrow || colors.face, + [PALETTE.UPPER_CORNER_EYE]: colors.eyebrow || colors.face, [PALETTE.BEHIND_EYE]: colors.face, [PALETTE.CORNER_EYE]: colors.face, [PALETTE.TEMPLE]: colors.face, diff --git a/dist/web/birb.embed.js b/dist/web/birb.embed.js index 6af6dec..0601a6f 100644 --- a/dist/web/birb.embed.js +++ b/dist/web/birb.embed.js @@ -668,8 +668,8 @@ [PALETTE.FEATHER_SPINE]: "#373737", [PALETTE.HOOD]: colors.face, [PALETTE.EYEBROW]: colors.face, - [PALETTE.UPPER_EYELID]: colors.face || colors.eyebrow, - [PALETTE.UPPER_CORNER_EYE]: colors.face || colors.eyebrow, + [PALETTE.UPPER_EYELID]: colors.eyebrow || colors.face, + [PALETTE.UPPER_CORNER_EYE]: colors.eyebrow || colors.face, [PALETTE.BEHIND_EYE]: colors.face, [PALETTE.CORNER_EYE]: colors.face, [PALETTE.TEMPLE]: colors.face, diff --git a/dist/web/birb.js b/dist/web/birb.js index 6af6dec..0601a6f 100644 --- a/dist/web/birb.js +++ b/dist/web/birb.js @@ -668,8 +668,8 @@ [PALETTE.FEATHER_SPINE]: "#373737", [PALETTE.HOOD]: colors.face, [PALETTE.EYEBROW]: colors.face, - [PALETTE.UPPER_EYELID]: colors.face || colors.eyebrow, - [PALETTE.UPPER_CORNER_EYE]: colors.face || colors.eyebrow, + [PALETTE.UPPER_EYELID]: colors.eyebrow || colors.face, + [PALETTE.UPPER_CORNER_EYE]: colors.eyebrow || colors.face, [PALETTE.BEHIND_EYE]: colors.face, [PALETTE.CORNER_EYE]: colors.face, [PALETTE.TEMPLE]: colors.face, diff --git a/src/animation/sprites.js b/src/animation/sprites.js index dcaaa55..bf8ee4d 100644 --- a/src/animation/sprites.js +++ b/src/animation/sprites.js @@ -126,8 +126,8 @@ export class BirdType { [PALETTE.FEATHER_SPINE]: "#373737", [PALETTE.HOOD]: colors.face, [PALETTE.EYEBROW]: colors.face, - [PALETTE.UPPER_EYELID]: colors.face || colors.eyebrow, - [PALETTE.UPPER_CORNER_EYE]: colors.face || colors.eyebrow, + [PALETTE.UPPER_EYELID]: colors.eyebrow || colors.face, + [PALETTE.UPPER_CORNER_EYE]: colors.eyebrow || colors.face, [PALETTE.BEHIND_EYE]: colors.face, [PALETTE.CORNER_EYE]: colors.face, [PALETTE.TEMPLE]: colors.face,