mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
17 lines
271 B
C
17 lines
271 B
C
|
/*
|
||
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <LibCore/AnonymousBuffer.h>
|
||
|
|
||
|
namespace Ladybird {
|
||
|
|
||
|
bool is_using_dark_system_theme();
|
||
|
Core::AnonymousBuffer create_system_palette();
|
||
|
|
||
|
}
|