summaryrefslogtreecommitdiffhomepage
path: root/app/components/styled/BlurAppButtonStyles.android.js
blob: 9243a28729c0c8cff6863e6487ebeb324840f771 (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,
    },
  })
};