46fdf97dea
Change-Id: I8added6ada702eb09e95f5f2d6e34b748067c6bc Reviewed-on: https://review.haiku-os.org/c/haiku/+/4571 Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org> Reviewed-by: Adrien Destugues <pulkomandy@pulkomandy.tk>
20 lines
350 B
C++
20 lines
350 B
C++
/*
|
|
* Copyright 2006-2022, Haiku, Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _DEFAULT_COLORS_H
|
|
#define _DEFAULT_COLORS_H
|
|
|
|
|
|
#include <InterfaceDefs.h>
|
|
|
|
namespace BPrivate {
|
|
|
|
extern const rgb_color* kDefaultColors;
|
|
|
|
rgb_color GetSystemColor(color_which, bool darkVariant);
|
|
|
|
} // namespace BPrivate
|
|
|
|
#endif // _DEFAULT_COLORS_H
|