-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy paththemeConfig.js
38 lines (33 loc) · 1.61 KB
/
themeConfig.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*=========================================================================================
File Name: themeConfig.js
Description: Theme configuration
----------------------------------------------------------------------------------------
Item Name: Vuesax Admin - Clean Vue.js Dashboard Admin Template
Author: Pixinvent
Author URL: hhttp://www.themeforest.net/user/pixinvent
==========================================================================================*/
// MAIN COLORS - VUESAX THEME COLORS
let colors = {
primary: '#7367F0',
success: '#28C76F',
danger: '#EA5455',
warning: '#FF9F43',
dark: '#1E1E1E',
}
import Vue from 'vue'
import Vuesax from 'vuesax'
Vue.use(Vuesax, { theme:{ colors } });
// CONFIGS
const themeConfig = {
theme: 'light', // options[String]: 'light'(default), 'dark', 'semi-dark'
sidebarCollapsed: false, // options[Boolean]: true, false(default)
navbarColor: "#fff", // options[String]: HEX color / rgb / rgba / Valid HTML Color name - (default: #fff)
navbarType: "floating", // options[String]: floating(default) / static / sticky / hidden
footerType: "static", // options[String]: static(default) / sticky / hidden
routerTransition: 'zoom-fade', // options[String]: zoom-fade / slide-fade / fade-bottom / fade / zoom-out / none(default)
disableCustomizer: false, // options[Boolean]: true, false(default)
hideScrollToTop: false, // options[Boolean]: true, false(default)
disableThemeTour: false, // options[Boolean]: true, false(default)
// NOTE: themeTour will be disabled in screens < 1200. Please refer docs for more info.
}
export default themeConfig