Skip to content

Commit

Permalink
Correct labels on colour mode toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
holly-cummins committed May 16, 2024
1 parent f19b601 commit cbd8c19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/headers/dark-mode-toggle.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ const modes = [{
alt: "sun",
icon: faSun,
theme: "light",
title: "'light': 'Color scheme: light; next: system preferences"
title: "'light': 'Color scheme: light; next: dark"
}, {
alt: "moon",
icon: faMoon,
theme: "dark",
title: "'dark': 'Color scheme: dark; next: light"
title: "'dark': 'Color scheme: dark; next: system preferences"
},
{
alt: "cog",
icon: faCog,
theme: "system",
title: "'system': 'Color scheme: system preferences; next: dark'"
title: "'system': 'Color scheme: system preferences; next: light'"
}]

const DarkModeToggle = () => {
Expand Down

0 comments on commit cbd8c19

Please sign in to comment.