17 lines
359 B
JavaScript
17 lines
359 B
JavaScript
|
import { commonLight } from "../../_styles/common/index.mjs";
|
||
|
export const self = vars => {
|
||
|
const {
|
||
|
primaryColorHover,
|
||
|
borderColor
|
||
|
} = vars;
|
||
|
return {
|
||
|
resizableTriggerColorHover: primaryColorHover,
|
||
|
resizableTriggerColor: borderColor
|
||
|
};
|
||
|
};
|
||
|
const themeLight = {
|
||
|
name: 'Split',
|
||
|
common: commonLight,
|
||
|
self
|
||
|
};
|
||
|
export default themeLight;
|