-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdarkMode.js
81 lines (72 loc) · 1.39 KB
/
darkMode.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { StyleSheet } from "react-native";
export const darkheader = StyleSheet.create({
header: {
paddingTop: 30,
backgroundColor: "#1c1c1c",
flexDirection: "row",
},
headerText: {
padding: 10,
color: "white",
fontSize: 30,
},
});
export const darkcard = StyleSheet.create({
card: {
borderRadius: 8,
elevation: 3,
backgroundColor: "#141414",
marginHorizontal: 4,
marginVertical: 6,
alignSelf: "center",
},
impCard: {
borderRadius: 8,
elevation: 3,
backgroundColor: "#141414",
marginHorizontal: 4,
marginVertical: 6,
alignSelf: "center",
borderLeftWidth: 4,
borderLeftColor: "#ff5757",
},
cardContent: {
marginHorizontal: 10,
marginVertical: 10,
flexDirection: "row",
},
todoItem: {
marginLeft: 8,
lineHeight: 25,
fontSize: 16,
color: "white",
marginRight: 55,
},
});
export const darktodos = StyleSheet.create({
container: {
flex: 1,
paddingBottom: 10,
paddingHorizontal: 10,
backgroundColor: "#2b2b2b",
},
emptyTodosText: {
color: "white",
fontSize: 20,
alignSelf: "center",
padding: 20,
elevation: 3,
opacity: 0.4,
},
todoInput: {
borderWidth: 2,
borderColor: "#A3661C",
color: "white",
padding: 10,
fontSize: 18,
borderRadius: 15,
marginBottom: 10,
width: "90%",
alignSelf: "center",
},
});