74 lines
1.4 KiB
JavaScript
74 lines
1.4 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.preset = void 0;
|
|
|
|
require("../../../src/styles/main.sass");
|
|
|
|
var _locale = require("../../locale");
|
|
|
|
// Styles
|
|
// Locale
|
|
var preset = {
|
|
breakpoint: {
|
|
// TODO: update to MD2 spec in v3 - 1280
|
|
mobileBreakpoint: 1264,
|
|
scrollBarWidth: 16,
|
|
thresholds: {
|
|
xs: 600,
|
|
sm: 960,
|
|
md: 1280,
|
|
lg: 1920
|
|
}
|
|
},
|
|
icons: {
|
|
// TODO: remove v3
|
|
iconfont: 'mdi',
|
|
values: {}
|
|
},
|
|
lang: {
|
|
current: 'en',
|
|
locales: {
|
|
en: _locale.en
|
|
},
|
|
// Default translator exists in lang service
|
|
t: undefined
|
|
},
|
|
rtl: false,
|
|
theme: {
|
|
dark: false,
|
|
default: 'light',
|
|
disable: false,
|
|
options: {
|
|
cspNonce: undefined,
|
|
customProperties: undefined,
|
|
minifyTheme: undefined,
|
|
themeCache: undefined,
|
|
variations: true
|
|
},
|
|
themes: {
|
|
light: {
|
|
primary: '#1976D2',
|
|
secondary: '#424242',
|
|
accent: '#82B1FF',
|
|
error: '#FF5252',
|
|
info: '#2196F3',
|
|
success: '#4CAF50',
|
|
warning: '#FB8C00'
|
|
},
|
|
dark: {
|
|
primary: '#2196F3',
|
|
secondary: '#424242',
|
|
accent: '#FF4081',
|
|
error: '#FF5252',
|
|
info: '#2196F3',
|
|
success: '#4CAF50',
|
|
warning: '#FB8C00'
|
|
}
|
|
}
|
|
}
|
|
};
|
|
exports.preset = preset;
|
|
//# sourceMappingURL=index.js.map
|