Skip to content

Commit 4d5a473

Browse files
chore: bump version to 0.2.0
1 parent 608804e commit 4d5a473

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "calino",
33
"private": true,
4-
"version": "0.1.0",
4+
"version": "0.2.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src/components/ThemeProvider.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ export function ThemeProvider({ children }: ThemeProviderProps) {
4343

4444
const updateThemeColor = () => {
4545
const style = getComputedStyle(document.documentElement)
46-
const accentColor = style.getPropertyValue('--color-accent').trim()
46+
const bgColor = style.getPropertyValue('--color-bg-primary').trim()
4747
const metaThemeColor = document.querySelector('meta[name="theme-color"]')
4848
if (metaThemeColor) {
49-
metaThemeColor.setAttribute('content', accentColor || '#4285f4')
49+
metaThemeColor.setAttribute('content', bgColor || '#fafafa')
5050
}
5151
}
5252

0 commit comments

Comments
 (0)