forked from ping-pub/explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththemeConfig.js
More file actions
37 lines (35 loc) · 1.33 KB
/
themeConfig.js
File metadata and controls
37 lines (35 loc) · 1.33 KB
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
// Theme Colors
// Initially this will be blank. Later on when app is initialized we will assign bootstrap colors to this from CSS variables.
export const $themeColors = {};
// App Breakpoints
// Initially this will be blank. Later on when app is initialized we will assign bootstrap breakpoints to this object from CSS variables.
export const $themeBreakpoints = {};
// APP CONFIG
export const $themeConfig = {
app: {
appName: process.env.VUE_APP_CHAIN_NAME.toUpperCase(), // Will update name in navigation menu (Branding)
// eslint-disable-next-line global-require
appLogoImage: process.env.VUE_APP_LOGO, // Will update logo in navigation menu (Branding)
},
layout: {
isRTL: false,
skin: "light", // light, dark, bordered, semi-dark
routerTransition: "zoom-fade", // zoom-fade, slide-fade, fade-bottom, fade, zoom-out, none
type: "vertical", // vertical, horizontal
contentWidth: "full", // full, boxed
menu: {
hidden: false,
isCollapsed: false,
},
navbar: {
// ? For horizontal menu, navbar type will work for navMenu type
type: "floating", // static , sticky , floating, hidden
backgroundColor: "", // BS color options [primary, success, etc]
},
footer: {
type: "static", // static, sticky, hidden
},
customizer: true,
enableScrollToTop: true,
},
};