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