1import { StyleSheet } from 'react-native';
2
3import Colors from './Colors';
4
5export default {
6  error: StyleSheet.create({
7    container: {
8      backgroundColor: Colors.errorBackground,
9    },
10    text: {
11      color: Colors.errorText,
12    },
13  }),
14
15  warning: StyleSheet.create({
16    container: {
17      backgroundColor: Colors.warningBackground,
18    },
19    text: {
20      color: Colors.warningText,
21    },
22  }),
23
24  notice: StyleSheet.create({
25    container: {
26      backgroundColor: Colors.noticeBackground,
27    },
28    text: {
29      color: Colors.noticeText,
30    },
31  }),
32};
33