dockview-core
Version:
Zero dependency layout manager supporting tabs, grids and splitviews
43 lines (42 loc) • 1.17 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.themeLightSpaced = exports.themeAbyssSpaced = exports.themeReplit = exports.themeDracula = exports.themeAbyss = exports.themeVisualStudio = exports.themeLight = exports.themeDark = void 0;
exports.themeDark = {
name: 'dark',
className: 'dockview-theme-dark',
};
exports.themeLight = {
name: 'light',
className: 'dockview-theme-light',
};
exports.themeVisualStudio = {
name: 'visualStudio',
className: 'dockview-theme-vs',
};
exports.themeAbyss = {
name: 'abyss',
className: 'dockview-theme-abyss',
};
exports.themeDracula = {
name: 'dracula',
className: 'dockview-theme-dracula',
};
exports.themeReplit = {
name: 'replit',
className: 'dockview-theme-replit',
gap: 10,
};
exports.themeAbyssSpaced = {
name: 'abyssSpaced',
className: 'dockview-theme-abyss-spaced',
gap: 10,
dndOverlayMounting: 'absolute',
dndPanelOverlay: 'group',
};
exports.themeLightSpaced = {
name: 'lightSpaced',
className: 'dockview-theme-light-spaced',
gap: 10,
dndOverlayMounting: 'absolute',
dndPanelOverlay: 'group',
};
;