-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.py
More file actions
42 lines (36 loc) · 943 Bytes
/
Copy pathstyles.py
File metadata and controls
42 lines (36 loc) · 943 Bytes
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
colors = {
'background': '#0b3d2e', # Deep green
'card': '#14532d', # Forest green
'accent': '#32cd32', # Lime green
'text': '#ffffff' # White text
}
font_family = 'Arial'
HEADER_STYLE = {
'textAlign': 'center',
'color': colors['text'],
'fontFamily': font_family,
'fontSize': '32px',
'marginBottom': '20px'
}
CARD_STYLE = {
'backgroundColor': colors['card'],
'padding': '12px',
'borderRadius': '8px',
'color': colors['text'],
'boxShadow': '0 4px 8px rgba(0,0,0,0.3)',
'fontFamily': font_family
}
PAGE_STYLE = {
'backgroundColor': colors['background'],
'padding': '20px',
'fontFamily': font_family
}
FILTER_STYLE = {
'backgroundColor': colors['card'],
'padding': '15px',
'borderRadius': '8px',
'color': colors['text'],
'boxShadow': '0 4px 8px rgba(0,0,0,0.3)',
'marginBottom': '20px',
'fontFamily': font_family
}