This repository has been archived by the owner on Aug 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
themeConfig.js
41 lines (37 loc) · 1.62 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
/*=========================================================================================
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
export const 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: "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;