代码拉取完成,页面将自动刷新
// @ts-nocheck
/* eslint-disable @typescript-eslint/no-var-requires */
const defaultTheme = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors')
module.exports = {
theme: {
extend: {
colors: {
primary: colors.emerald,
gray: {
...colors.zinc,
750: '#323238',
850: '#1f1f21',
950: '#101012',
},
},
maxWidth: theme => ({
...theme('width'),
}),
maxHeight: theme => ({
...theme('height'),
}),
minWidth: theme => ({
...theme('width'),
}),
minHeight: theme => ({
...theme('height'),
}),
screens: Object.keys(defaultTheme.screens).reduce((obj, key) => {
const [rawMin] = defaultTheme.screens[key].split('px')
const max = parseInt(rawMin) - 1
obj[`!${key}`] = { max: `${max}px` }
return obj
}, {}),
borderRadius: {
sm: '0.25rem',
DEFAULT: '0.375rem',
md: '0.5rem',
lg: '0.75rem',
xl: '1rem',
'2xl': '1.5rem',
'3xl': '2rem',
},
cursor: {
'ew-resize': 'ew-resize',
'ns-resize': 'ns-resize',
'cursor-not-allowed': 'cursor-not-allowed',
},
transitionProperty: {
border: 'border',
},
},
},
content: [
'./docs/**/*.{vue,js,ts,jsx,tsx,md}',
'./docs/.vitepress/**/*.{vue,js,ts,jsx,tsx,md}',
],
darkMode: 'class', // or 'media' or 'class'
corePlugins: {
preflight: false,
},
plugins: [],
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。