css_ast/values/color_hdr/
mod.rs

1// AUTO-GENERATED from w3c/csswg-drafts
2// Commit: https://github.com/w3c/csswg-drafts/commit/7e27ad7484307dfdbe9d0e18ad19d02859389688
3// Do not edit this file directly.
4#![allow(warnings)]
5//! https://drafts.csswg.org/css-color-hdr-1/
6
7mod impls;
8use super::prelude::*;
9use impls::*;
10/// Represents the style value for `dynamic-range-limit` as defined in [css-color-hdr-1](https://drafts.csswg.org/css-color-hdr-1/#dynamic-range-limit).
11///
12/// The grammar is defined as:
13///
14/// ```text,ignore
15/// standard | no-limit | constrained | <dynamic-range-limit-mix()>
16/// ```
17///
18/// https://drafts.csswg.org/css-color-hdr-1/#dynamic-range-limit
19#[syntax(" standard | no-limit | constrained | <dynamic-range-limit-mix()> ")]
20#[derive(
21	Parse, Peek, ToSpan, ToCursors, DeclarationMetadata, SemanticEq, Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash,
22)]
23#[declaration_metadata(
24    initial = "no-limit",
25    inherits,
26    applies_to = Elements,
27    animation_type = Unknown,
28    property_group = ColorHdr,
29    computed_value_type = Unknown,
30    canonical_order = "per grammar",
31)]
32#[cfg_attr(feature = "serde", derive(serde::Serialize), serde())]
33#[cfg_attr(feature = "css_feature_data", derive(ToCSSFeature), css_feature("css.properties.dynamic-range-limit"))]
34#[cfg_attr(feature = "visitable", derive(Visitable), visit)]
35#[derive(csskit_derives::NodeWithMetadata)]
36pub enum DynamicRangeLimitStyleValue<'a> {}