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

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)',
    },
  }),
};