ladybird/Libraries/LibGfx/InterpolationColorSpace.h
Tim Ledbetter ad06ac0d58 LibWeb: Implement the color-interpolation property for SVG gradients
This changes the operating color space for gradient `<linearGradient>`
and `<radialGradient>` elements.
2025-08-17 10:51:05 +02:00

16 lines
218 B
C++

/*
* Copyright (c) 2025, Tim Ledbetter <tim.ledbetter@ladybird.org>.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
namespace Gfx {
enum class InterpolationColorSpace {
LinearRGB,
SRGB,
};
}