summaryrefslogtreecommitdiffhomepage
path: root/app/components/styled/BlurAppButtonStyles.js
blob: 9e7b21375490d3932e66aa69233f58af75b8a4ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { colors } from '../../config';

import { createViewStyles } from '../../lib/styles';

export default {
  ...createViewStyles({
    transparent:{
      backgroundColor: colors.white20,
      backdropFilter: 'blur(4px)',
    },
    transparentHover:{
      backgroundColor: colors.white40,
      backdropFilter: 'blur(4px)',
    },
    redTransparent:{
      backgroundColor: colors.red40,
      backdropFilter: 'blur(4px)',
    },
    redTransparentHover:{
      backgroundColor: colors.red45,
      backdropFilter: 'blur(4px)',
    },
  })
};