-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGlobalStyleSheet.js
96 lines (92 loc) · 2.22 KB
/
GlobalStyleSheet.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import { StyleSheet } from "react-native";
import { Title } from "react-native-paper";
import { black } from "react-native-paper/lib/typescript/styles/themes/v2/colors";
const GlobalStyleSheet = StyleSheet.create(
{
container: {
flex: 1,
justifyContent: 'center',
padding: 16,
backgroundColor: '#DDEAFC', // Background light blue
color:'#ffffff',
},
background: {
alignItems: 'center',
flex: 1,
justifyContent: 'center',
},
myButton: {
margin: 5,
borderRadius: 15,
backgroundColor: '#2FD1F5', // Card color primary 2 blue
},
myInput: {
margin: 5,
borderRadius: 15,
backgroundColor: '#ffffff', // White background for inputs
padding: 10,
},
menuContainer: {
marginBottom: 20,
},
studentList: {
flex: 1,
marginBottom: 20,
},
studentRow: {
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center',
paddingVertical: 10,
borderBottomWidth: 1,
borderColor: '#ddd',
},
studentName: {
fontSize: 16,
color: '#222E45', // Dark font color
},
marksInput: {
width: 60,
borderBottomWidth: 1,
borderColor: '#000',
textAlign: 'center',
},
buttonRow: {
justifyContent: 'space-between',
marginVertical:5,
},
buttonColumn:{
justifyContent:'space-between',
padding:5,
flexDirection:'column',
},
button: {
flex: 1,
marginHorizontal: 5,
backgroundColor: '#2FD1F5',
},
title: {
color: '#222E45', // Dark font color (change this to your desired color)
},
row: {
flexDirection: 'row',
borderBottomWidth: 1,
borderBottomColor: '#ccc',
},
headerRow: {
backgroundColor: '#f8f8f8',
},
cell: {
flex: 1,
padding: 10,
textAlign: 'center',
},
headerCell: {
flex: 1,
padding: 10,
fontWeight: 'bold',
textAlign: 'center',
},
}
);
export default GlobalStyleSheet