diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index c3b514308..dc8418473 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -356,7 +356,7 @@ export default function Layout({ children, props }) { ) } variant='subtle' - color='gray' + color={theme.colorScheme === 'dark' ? 'dark' : 'gray'} compact size='xl' p='sm' diff --git a/src/lib/themes/catppuccin_frappe.ts b/src/lib/themes/catppuccin_frappe.ts index 40f2d112a..d8b93c855 100644 --- a/src/lib/themes/catppuccin_frappe.ts +++ b/src/lib/themes/catppuccin_frappe.ts @@ -1,5 +1,5 @@ // https://github.com/SeaswimmerTheFsh -// https://catppuccin.com/pallete +// https://catppuccin.com/palette import createTheme from '.'; diff --git a/src/lib/themes/catppuccin_latte.ts b/src/lib/themes/catppuccin_latte.ts index 51a6ed2e5..5691b43b3 100644 --- a/src/lib/themes/catppuccin_latte.ts +++ b/src/lib/themes/catppuccin_latte.ts @@ -1,17 +1,17 @@ // https://github.com/SeaswimmerTheFsh -// https://catppuccin.com/pallete +// https://catppuccin.com/palette import createTheme from '.'; export default createTheme({ - colorScheme: 'light', + colorScheme: 'dark', primaryColor: 'blue', other: { AppShell_backgroundColor: '#dce0e8', hover: '#ccd0da', }, colors: { - light: [ + dark: [ '#4c4f69', '#8c8fa1', '#8c8fa1', diff --git a/src/lib/themes/catppuccin_macchiato.ts b/src/lib/themes/catppuccin_macchiato.ts index 9fbeb85a6..7a179be28 100644 --- a/src/lib/themes/catppuccin_macchiato.ts +++ b/src/lib/themes/catppuccin_macchiato.ts @@ -1,5 +1,5 @@ // https://github.com/SeaswimmerTheFsh -// https://catppuccin.com/pallete +// https://catppuccin.com/palette import createTheme from '.'; diff --git a/src/lib/themes/catppuccin_mocha.ts b/src/lib/themes/catppuccin_mocha.ts index 1445d60d3..ff6e1931c 100644 --- a/src/lib/themes/catppuccin_mocha.ts +++ b/src/lib/themes/catppuccin_mocha.ts @@ -1,5 +1,5 @@ // https://github.com/SeaswimmerTheFsh -// https://catppuccin.com/pallete +// https://catppuccin.com/palette import createTheme from '.';