Re: [w3ctag/design-reviews] FYI Review of CSS Fonts 4 `font-palette`and `@font-palette-values` (Issue #719)

Is it intentional that authors still need to create an `@font-palette-values` rule to use a built-in palette?

```css
p::first-letter {
 font: 2.9em/.8 "Fancy color font";
 float: left;
 font-palette: --lilac-blossom;
}

@font-palette-values --lilac-blossom {
 font-family: "Fancy color font";
 base-palette: 7;
}
```

instead of just:

```css
p::first-letter {
 font: 2.9em/.8 "Fancy color font";
 float: left;
 font-palette: 7;
}
```

-- 
Reply to this email directly or view it on GitHub:
https://github.com/w3ctag/design-reviews/issues/719#issuecomment-1101480840
You are receiving this because you are subscribed to this thread.

Message ID: <w3ctag/design-reviews/issues/719/1101480840@github.com>

Received on Monday, 18 April 2022 15:08:30 UTC