chromium/ui/color/dynamic_color/palette.h

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_COLOR_DYNAMIC_COLOR_PALETTE_H_
#define UI_COLOR_DYNAMIC_COLOR_PALETTE_H_

#include "base/component_export.h"
#include "third_party/skia/include/core/SkColor.h"

namespace ui {

// For a given color, provides the color values for the tonal range between 0
// and 100 in the HCT color space.
class COMPONENT_EXPORT(DYNAMIC_COLOR) TonalPalette {};

// A collection of TonalPalettes representing the reference palette for a
// particular color configuration.
class COMPONENT_EXPORT(DYNAMIC_COLOR) Palette {};

}  // namespace ui

#endif  // UI_COLOR_DYNAMIC_COLOR_PALETTE_H_