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