mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-07-17 11:07:11 +08:00
feat: cow desktop first version
This commit is contained in:
37
desktop/tailwind.config.js
Normal file
37
desktop/tailwind.config.js
Normal file
@@ -0,0 +1,37 @@
|
||||
/** @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: [],
|
||||
}
|
||||
Reference in New Issue
Block a user