quantumai-design-system
Version:
퀀텀에이아이의 디자인 시스템
19 lines (18 loc) • 463 B
JavaScript
import { css } from '@emotion/react';
import { COLORS } from '../../../styles/theme';
export var TOGGLE_COLOR = {
base: css({
backgroundColor: COLORS.grey4,
'&:after': {
backgroundColor: COLORS.white,
borderColor: COLORS.grey6,
},
}),
checked: css({
backgroundColor: COLORS.primaryL,
'&:after': {
borderColor: COLORS.blue3,
},
}),
};
Object.freeze(TOGGLE_COLOR);