Sunrise, Sunset?

It's a simple game. Is the picture below a sunrise, or a sunset?

{#if debug} {/if}
Sunrise or Sunset?
{#if hasGuessingHistoryBeenLoaded}
{#if visibleNotification !== "none"}
{visibleNotification === "success" ? "Correct 🎉" : "Incorrect 💔"}
{/if}
{#if $guessingHistory.mostRecentGuessDate === todaysDateString}

You've already guessed today. Come back tomorrow.

{/if}

Your Score

{#if $guessingHistory.mostRecentGuessDate !== undefined}

You've made {$guessingHistory.totalNumberOfGuesses} {$guessingHistory.totalNumberOfGuesses === 1 ? "guess" : "guesses"} so far.

You've guessed correctly {Number( $guessingHistory.correctDays.length / $guessingHistory.totalNumberOfGuesses ) * 100}% of the time.

{:else}

You've not guessed yet.

{/if}
{/if}