mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-12-24 16:10:33 -06:00
41be5479af
Detects dark mode at server start and styles the runtime accordingly. Patch modified by: Neel Patel
18 lines
437 B
C
18 lines
437 B
C
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2020, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// macos.h - macOS-specific Objective-C/C++ functions
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef MACOS_H
|
|
#define MACOS_H
|
|
|
|
bool IsDarkMode();
|
|
|
|
#endif // MACOS_H
|