-
Notifications
You must be signed in to change notification settings - Fork 0
/
themeConfig.js
43 lines (37 loc) · 1.95 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
39
40
41
42
43
/*=========================================================================================
File Name: themeConfig.js
Description: Theme configuration
----------------------------------------------------------------------------------------
Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
Author: Pixinvent
Author URL: hhttp://www.themeforest.net/user/pixinvent
==========================================================================================*/
// MAIN COLORS - VUESAX THEME COLORS
let colors = {
primary : '#3DA9FC',
success : '#28C76F',
danger : '#EA5455',
warning : '#FF9F43',
dark : '#1E1E1E',
}
// CONFIGS
const themeConfig = {
disableCustomizer : false, // options[Boolean] : true, false(default)
disableThemeTour : false, // options[Boolean] : true, false(default)
footerType : "static", // options[String] : static(default) / sticky / hidden
hideScrollToTop : false, // options[Boolean] : true, false(default)
mainLayoutType : "vertical", // options[String] : vertical(default) / horizontal
navbarColor : "#fff", // options[String] : HEX color / rgb / rgba / Valid HTML Color name - (default: #fff)
navbarType : "floating", // options[String] : floating(default) / static / sticky / hidden
routerTransition : "zoom-fade", // options[String] : zoom-fade / slide-fade / fade-bottom / fade / zoom-out / none(default)
rtl : false, // options[Boolean] : true, false(default)
sidebarCollapsed : false, // options[Boolean] : true, false(default)
theme : "light", // options[String] : "light"(default), "dark", "semi-dark"
// Not required yet - WIP
userInfoLocalStorageKey: "userInfo",
// NOTE: themeTour will be disabled in screens < 1200. Please refer docs for more info.
}
import Vue from 'vue'
import Vuesax from 'vuesax'
Vue.use(Vuesax, { theme:{ colors }, rtl: themeConfig.rtl })
export default themeConfig