-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.py
24 lines (19 loc) · 1.21 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# API Configuration
API_KEY = "47abd6fca9faad069da778f0cdbb0b9c" # Your OpenWeatherMap API Key
BASE_URL = "http://api.openweathermap.org/data/2.5/weather?" # Base URL for OpenWeather API
# Customizable text and color settings for the header
HEADER_TOP_TEXT_SIZE = 20 # Font size for the header text
HEADER_TOP_TEXT_COLOR = "#000000" # Color of the header text
HEADER_TEXT_TOP_BORDER_THICKNESS = 2.5 # Thickness of the header border
# Customizable search bar settings
SEARCH_BAR_BORDER_COLOR = "#FFFFFF" # Border color for the search bar
SEARCH_BUTTON_COLOR = "#0068E5" # Background color for the search button
SEARCH_BUTTON_TEXT_COLOR = "#FFFFFF" # Text color for the search button
# Customizable image settings
DEFAULT_BACKGROUND_IMAGE = "assets/background.png" # Path to the default background image
SEARCH_ICON_IMAGE = "assets/search_icon.png" # Path to the search button icon
# Customizable text settings for the weather info box
INFO_TEXT_COLOR = "#000000" # Text color for the weather info box
INFO_BORDER_THICKNESS = 3 # Thickness of the border for the weather info box
# Default city setting
DEFAULT_CITY = "New Delhi" # Default city to show when the app starts (can be changed by user)