- From: Pavel Laptev via GitHub <sysbot+gh@w3.org>
- Date: Sat, 26 Nov 2022 01:04:09 +0000
- To: public-design-tokens-log@w3.org
@mikemai2awesome agreed that here could be `minmax` type, but `fluid` term doesn't fit here. And might be it shouldn't be attached to typography only. There is another question — how to handle if values more than 2 if we're talking about typography. Many designers prefer to use a specific `font-size` for tablets. So, there will be at least `desktop`, `tablet` and `mobile`. I would rather think about `breakpoints` token in this case 🤔 ```json { "heading-level-1": { "$type": "typography", "$value": { "fontFamily": "Roboto", "fontSize": "42px", "fontWeight": "700", "letterSpacing": "0.1px", "lineHeight": "1.2" }, "$extensions": { "type": "breakpoints", "values": { "mobile": { "fontSize": "32px", "lineHeight": "1.1" }, "tablet": { "fontSize": "32px", "lineHeight": "1.2" }, "desktop": { "fontSize": "42px", "lineHeight": "1.2" } } } } } ``` -- GitHub Notification of comment by PavelLaptev Please view or discuss this issue at https://github.com/design-tokens/community-group/issues/188#issuecomment-1327945673 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Saturday, 26 November 2022 01:04:11 UTC