mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-07-17 11:07:11 +08:00
38 lines
996 B
JavaScript
38 lines
996 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/renderer/**/*.{html,tsx,ts}'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', '-apple-system', '"PingFang SC"', '"Hiragino Sans GB"', 'sans-serif'],
|
|
mono: ['"JetBrains Mono"', '"Fira Code"', 'Consolas', 'monospace'],
|
|
},
|
|
colors: {
|
|
primary: {
|
|
50: '#EDFDF3',
|
|
100: '#D4FAE2',
|
|
200: '#ABF4C7',
|
|
300: '#74E9A4',
|
|
400: '#4ABE6E',
|
|
500: '#35A85B',
|
|
600: '#228547',
|
|
700: '#1C6B3B',
|
|
800: '#1A5532',
|
|
900: '#16462A',
|
|
},
|
|
},
|
|
animation: {
|
|
'pulse-dot': 'pulseDot 1.4s infinite ease-in-out both',
|
|
},
|
|
keyframes: {
|
|
pulseDot: {
|
|
'0%, 80%, 100%': { transform: 'scale(0.6)', opacity: '0.4' },
|
|
'40%': { transform: 'scale(1)', opacity: '1' },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|