mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
13 lines
308 B
JavaScript
13 lines
308 B
JavaScript
|
import style from './style';
|
||
|
import compose from './compose';
|
||
|
export const color = style({
|
||
|
prop: 'color',
|
||
|
themeKey: 'palette'
|
||
|
});
|
||
|
export const bgcolor = style({
|
||
|
prop: 'bgcolor',
|
||
|
cssProperty: 'backgroundColor',
|
||
|
themeKey: 'palette'
|
||
|
});
|
||
|
const palette = compose(color, bgcolor);
|
||
|
export default palette;
|