初始化

This commit is contained in:
xiaoyi
2024-01-27 19:53:17 +08:00
commit 07dbe71c31
840 changed files with 119152 additions and 0 deletions

39
chat/tailwind.config.js Normal file
View File

@@ -0,0 +1,39 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
purge: false,
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
],
theme: {
extend: {
screens: {
'3xl': '1750px',
'4xl': '1870px',
},
animation: {
blink: 'blink 1.2s infinite steps(1, start)',
},
keyframes: {
blink: {
'0%, 100%': { 'background-color': 'currentColor' },
'50%': { 'background-color': 'transparent' },
},
},
width: {
sider: '60px',
},
textColor: {
primary: '#409eff',
},
minHeight: {
28: '28px',
},
backgroundColor: {
lightBg: 'linear-gradient(145deg, #F7F9FA 0%, #D9E9F0 50%, #F7F9FA 100%)',
},
},
},
plugins: ['@tailwindcss/typography'],
}