feat(style): dark mode

This commit is contained in:
Corentin Thomasset 2022-04-04 01:52:59 +02:00
parent e8594de7b4
commit 3e92b7f1e0
No known key found for this signature in database
GPG key ID: DBD997E935996158
3 changed files with 25 additions and 6 deletions

View file

@ -0,0 +1,5 @@
import { defineStore } from 'pinia';
export const useStyleStore = defineStore('style', () => ({
isDarkTheme: true,
}));