mirror of
https://github.com/musistudio/claude-code-router.git
synced 2026-02-03 07:10:51 +08:00
init doc
This commit is contained in:
46
docs/tailwind.config.js
Normal file
46
docs/tailwind.config.js
Normal file
@@ -0,0 +1,46 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: [
|
||||
'./src/**/*.{js,jsx,ts,tsx}',
|
||||
],
|
||||
darkMode: 'class',
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
primary: {
|
||||
DEFAULT: '#CC7C5E',
|
||||
50: '#FEF6F3',
|
||||
100: '#FDE8E0',
|
||||
200: '#FBD2C1',
|
||||
300: '#F7AC92',
|
||||
400: '#F28B68',
|
||||
500: '#CC7C5E',
|
||||
600: '#BC5C3E',
|
||||
700: '#964630',
|
||||
800: '#7A3B2C',
|
||||
900: '#643528',
|
||||
},
|
||||
},
|
||||
animation: {
|
||||
'fade-in-up': 'fadeInUp 0.6s ease-out',
|
||||
'fade-in': 'fadeIn 0.6s ease-out',
|
||||
'slide-in': 'slideIn 0.6s ease-out',
|
||||
},
|
||||
keyframes: {
|
||||
fadeInUp: {
|
||||
'0%': { opacity: '0', transform: 'translateY(20px)' },
|
||||
'100%': { opacity: '1', transform: 'translateY(0)' },
|
||||
},
|
||||
fadeIn: {
|
||||
'0%': { opacity: '0' },
|
||||
'100%': { opacity: '1' },
|
||||
},
|
||||
slideIn: {
|
||||
'0%': { transform: 'translateX(-100%)' },
|
||||
'100%': { transform: 'translateX(0)' },
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
Reference in New Issue
Block a user