blob: 5f185176c558dc42b08701e217c075bf47c56255 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// @flow
import { Styles } from 'reactxp';
import { colors } from '../../config';
export default {
transparent: Styles.createViewStyle({
backgroundColor: colors.white20,
}),
transparentHover: Styles.createViewStyle({
backgroundColor: colors.white40,
}),
redTransparent: Styles.createViewStyle({
backgroundColor: colors.red40,
}),
redTransparentHover: Styles.createViewStyle({
backgroundColor: colors.red45,
}),
};
|