dark to light

pull/2189/head
Tuğçe Küçükoğlu 2022-02-18 11:27:29 +03:00
parent a90690a115
commit ff2e2e6250
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, viewport-fit=cover">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>PrimeVUE</title>
<link id="theme-link" rel="stylesheet" href="<%= BASE_URL %>themes/lara-dark-indigo/theme.css">
<link id="theme-link" rel="stylesheet" href="<%= BASE_URL %>themes/lara-light-indigo/theme.css">
</head>
<body>

View File

@ -40,7 +40,7 @@ export default {
return {
sidebarActive: false,
newsActive: true,
theme: 'lara-dark-indigo'
theme: 'lara-light-indigo'
}
},
mounted() {

View File

@ -118,7 +118,7 @@ router.beforeEach(function (to, from, next) {
const app = createApp(App);
app.config.globalProperties.$appState = reactive({darkTheme: true, codeSandbox: false, sourceType: 'options-api'});
app.config.globalProperties.$appState = reactive({darkTheme: false, codeSandbox: false, sourceType: 'options-api'});
app.use(PrimeVue, {ripple: true});
app.use(ToastService);