-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.kv
82 lines (78 loc) · 2.41 KB
/
styles.kv
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
# Global button style
<Button>:
background_normal: ''
background_color: 0.178, 0.647, 0.902, 1 # Light blue background color
color: 1, 1, 1, 1 # White text color
font_size: '18sp'
<TextInput>:
background_color: 1, 1, 1, 1 # White background color
foreground_color: 0, 0, 0, 1 # Black text color
font_size: '18sp'
size_hint_y: None # Allows you to set a fixed height
height: 40 # Set a fixed height for the TextInput
padding: [10, 5,5,5] # Set padding (top, right, bottom, left) as needed
#:import Color kivy.graphics.Color
#:import Rectangle kivy.graphics.Rectangle
<CryptoWalletApp>:
canvas.before:
Color:
rgba: 0.178, 0.647, 0.902, 1 # Background color (light blue)
Rectangle:
pos: self.pos
size: self.size
<StartPage>:
# Your StartPage styling goes here
canvas.before:
Color:
rgba: 0.178, 0.647, 0.902, 0.1 # Background color (light blue)
Rectangle:
pos: self.pos
size: self.size
<CreatePage>:
# Your CreatePage styling goes here
canvas.before:
Color:
rgba: 0.178, 0.647, 0.902, 0.1 # Background color (light blue)
Rectangle:
pos: self.pos
size: self.size
<ImportPage>:
# Your ImportPage styling goes here
canvas.before:
Color:
rgba: 0.178, 0.647, 0.902, 0.1 # Background color (light blue)
Rectangle:
pos: self.pos
size: self.size
<LoginPage>:
# Your LoginPage styling goes here
canvas.before:
Color:
rgba: 0.178, 0.647, 0.902, 0.1 # Background color (light blue)
Rectangle:
pos: self.pos
size: self.size
<MainPage>:
# Your MainPage styling goes here
canvas.before:
Color:
rgba: 0.178, 0.647, 0.902, 0.1 # Background color (light blue)
Rectangle:
pos: self.pos
size: self.size
<CoinPage>:
# Your MainPage styling goes here
canvas.before:
Color:
rgba: 0.178, 0.647, 0.902, 0.1 # Background color (light blue)
Rectangle:
pos: self.pos
size: self.size
<SettingsPage>:
# Your MainPage styling goes here
canvas.before:
Color:
rgba: 0.178, 0.647, 0.902, 0.1 # Background color (light blue)
Rectangle:
pos: self.pos
size: self.size