# Configuration

```lua
Config = {}

Config.Framework = 'auto' -- 'auto', 'qb', 'ox', 'qbx'

-- Language setting 'en', 'tr'
Config.Language = 'en'

-- Default color settings
Config.DefaultColors = {
    bgColor = '#000000',
    bgOpacity = 90,
    msgBgColor = '#ffffff',
    msgBgOpacity = 5,
    textColor = '#ffffff',
    headerColor = '#FFD700'
}

-- Command and its description
Config.CommandInfo = {
    command = 'jobchat',
    description = 'Opens the profession chat channel'
}

Config.TimeZone = 'Europe/London' -- Time zone

-- Available time zones and their descriptions
Config.AvailableTimeZones = {
    -- Europe
    ['Europe/Istanbul'] = 'Türkiye (UTC+3)',
    ['Europe/London'] = 'İngiltere (UTC+0)',
    ['Europe/Paris'] = 'Fransa (UTC+1)',
    ['Europe/Berlin'] = 'Almanya (UTC+1)',
    ['Europe/Moscow'] = 'Rusya (UTC+3)',
    
    -- America
    ['America/New_York'] = 'New York (UTC-5)',
    ['America/Chicago'] = 'Chicago (UTC-6)',
    ['America/Denver'] = 'Denver (UTC-7)',
    ['America/Los_Angeles'] = 'Los Angeles (UTC-8)',
    ['America/Toronto'] = 'Toronto (UTC-5)',
    ['America/Vancouver'] = 'Vancouver (UTC-8)',
    
    -- Asia
    ['Asia/Dubai'] = 'Dubai (UTC+4)',
    ['Asia/Singapore'] = 'Singapur (UTC+8)',
    ['Asia/Tokyo'] = 'Japonya (UTC+9)',
    ['Asia/Shanghai'] = 'Çin (UTC+8)',
    ['Asia/Seoul'] = 'Güney Kore (UTC+9)',
    
    -- Oceania
    ['Australia/Sydney'] = 'Sidney (UTC+10)',
    ['Australia/Melbourne'] = 'Melbourne (UTC+10)',
    ['Pacific/Auckland'] = 'Yeni Zelanda (UTC+12)',
    
    -- Other
    ['UTC'] = 'UTC (Universal Clock)',
    ['GMT'] = 'GMT (Greenwich Mean Time)'
}

Config.Notifications = {
    enabled = true,    -- Turn notifications on/off
    duration = 5000,   -- Notification period (seconds)
    title = 'Job Chat',  -- Notification title    
    icon = 'fas fa-comments', -- Notification icon (for ox_notify)
    color = '#9C27B0', -- Notification color
    sound = true,      -- Notification sound
    soundFile = 'notification.mp3' -- Notification sound file
}

-- Job list
Config.Jobs = {
    ['police'] = 'Police',
    ['ambulance'] = 'Ambulance',
    ['mechanic'] = 'Mechanic',
    ['taxi'] = 'Taxi'
}

Config.TagSettings = {
    color = '#9C27B0',  -- Tag color
    fontFamily = "'Poppins', sans-serif",  -- Tag font family
    fontWeight = '600',    -- Tag font thickness
    fontSize = '14px',    -- Tag font size
    backgroundColor = 'rgba(156, 39, 176, 0.1)',  -- Tag background color
    padding = '2px 6px',      -- Tag background color
    borderRadius = '4px',  -- Tag border radius
    borderColor = '#9C27B0', -- Tag border rengi
    borderWidth = '1px',  -- Tag border kalınlığı
    borderStyle = 'solid' -- Tag border stili
} 
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://bbstore.gitbook.io/docs/resources/bb-jobchat/configuration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
