GetTheme returns the current theme
()
| 23 | |
| 24 | // GetTheme returns the current theme |
| 25 | func GetTheme() *config.Theme { |
| 26 | themeMutex.RLock() |
| 27 | defer themeMutex.RUnlock() |
| 28 | return currentTheme |
| 29 | } |
| 30 | |
| 31 | // Header styles |
| 32 | func HeaderStyle() lipgloss.Style { |
no outgoing calls
no test coverage detected