diff --git a/src/Curtain/Curtain.vue b/src/Curtain/Curtain.vue index e756bd9..4a0042a 100644 --- a/src/Curtain/Curtain.vue +++ b/src/Curtain/Curtain.vue @@ -496,7 +496,7 @@ async function renderScene(): Promise { //canvasSmoothContext.restore() if (eachIsDone) { - //emit('curtainCall', '') + emit('curtainCall', '') doneAnimatingCurtain = true return true } diff --git a/src/components/Background.vue b/src/components/Background.vue index 8aa821f..e998e0e 100644 --- a/src/components/Background.vue +++ b/src/components/Background.vue @@ -78,7 +78,7 @@ import { } from '@radix-ui/colors'; -let colorsCycleIndex = 0 +let colorsCycleIndex = 1 const colorsCycle: Rainbow[] = [ { dir: RainbowDirection.Regular, @@ -97,13 +97,13 @@ const colorsCycle: Rainbow[] = [ }, }, { - dir: RainbowDirection.Reversed, + dir: RainbowDirection.Regular, stops: [ - { stop: 0, color: hslToComponents(ruby.ruby11) }, + { stop: 0, color: hslToComponents(orange.orange9) }, { stop: 0.45, color: hslToComponents(tomato.tomato10) }, //{ stop: 0.5, color: hslToComponents(tomato.tomato9) }, - { stop: 0.6, color: hslToComponents(orange.orange9) }, - { stop: 1, color: hslToComponents(orange.orange8) }, + { stop: 0.6, color: hslToComponents(red.red10) }, + { stop: 1, color: hslToComponents(ruby.ruby11) }, ], curve: { pos: { low: -300, high: 0 }, @@ -270,7 +270,7 @@ defineExpose({ reloadBackground }) > @@ -292,7 +292,4 @@ defineExpose({ reloadBackground }) .front-curtain { z-index: 1; } -#curtain1 { - transform: scaleY(-1); -}