Skip to content

Commit

Permalink
fix: latte & spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
diced committed Jun 8, 2024
1 parent 08d3bfb commit 5e37d89
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion src/lib/themes/catppuccin_frappe.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// https://github.com/SeaswimmerTheFsh
// https://catppuccin.com/pallete
// https://catppuccin.com/palette

import createTheme from '.';

Expand Down
6 changes: 3 additions & 3 deletions src/lib/themes/catppuccin_latte.ts
Original file line number Diff line number Diff line change
@@ -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',
Expand Down
2 changes: 1 addition & 1 deletion src/lib/themes/catppuccin_macchiato.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// https://github.com/SeaswimmerTheFsh
// https://catppuccin.com/pallete
// https://catppuccin.com/palette

import createTheme from '.';

Expand Down
2 changes: 1 addition & 1 deletion src/lib/themes/catppuccin_mocha.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// https://github.com/SeaswimmerTheFsh
// https://catppuccin.com/pallete
// https://catppuccin.com/palette

import createTheme from '.';

Expand Down

0 comments on commit 5e37d89

Please sign in to comment.