主题
UnoCSS 也支持你在 Tailwind CSS / Windi CSS 中可能熟悉的主题系统。在用户级别,你可以在你的配置中指定 theme
属性,它将深度合并到默认主题中。
使用
ts
theme: {
// ...
colors: {
'veryCool': '#0000ff', // class="text-very-cool"
'brand': {
'primary': 'hsl(var(--hue, 217) 78% 51%)', //class="bg-brand-primary"
},
},
}
TIP
在解析过程中,theme
将始终存在于 context
中。
在 rules
中的用法
在规则中使用主题:
ts
rules: [
[/^text-(.*)$/, ([, c], { theme }) => {
if (theme.colors[c])
return { color: theme.colors[c] }
}],
]
在 variants
中的用法
在变体中使用主题:
ts
variants: [
{
name: 'variant-name',
match(matcher, { theme }) {
// ...
},
},
]
在 shortcuts
中的用法
在动态快捷方式中使用主题:
ts
shortcuts: [
[/^badge-(.*)$/, ([, c], { theme }) => {
if (Object.keys(theme.colors).includes(c))
return `bg-${c}4:10 text-${c}5 rounded`
}],
]
断点
WARNING
当提供自定义的 breakpoints
对象时,默认值将被覆盖而不是合并。
使用以下示例,你只能使用 sm:
和 md:
断点变体:
ts
theme: {
// ...
breakpoints: {
sm: '320px',
md: '640px',
},
}
INFO
verticalBreakpoints
和 breakpoints
相同,但用于垂直布局。
此外,我们将按大小(相同单位)对屏幕点进行排序。对于不同单位的屏幕点,为了避免错误,请在配置中使用统一的单位。
ts
theme: {
// ...
breakpoints: {
sm: '320px',
// 因为 uno 不支持不同单位大小的比较排序,请转换为相同单位。
// md: '40rem',
md: `${40 * 16}px`,
lg: '960px',
},
}