mirror of
https://github.com/harivansh-afk/system-design.git
synced 2026-04-15 05:02:11 +00:00
58 lines
1.4 KiB
JavaScript
58 lines
1.4 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// AWS colors
|
|
aws: {
|
|
orange: '#FF9900',
|
|
dark: '#232F3E',
|
|
light: '#37475A'
|
|
},
|
|
// GCP colors
|
|
gcp: {
|
|
blue: '#4285F4',
|
|
red: '#EA4335',
|
|
yellow: '#FBBC04',
|
|
green: '#34A853'
|
|
},
|
|
// Custom theme colors
|
|
surface: {
|
|
50: '#f8fafc',
|
|
100: '#f1f5f9',
|
|
200: '#e2e8f0',
|
|
300: '#cbd5e1',
|
|
400: '#94a3b8',
|
|
500: '#64748b',
|
|
600: '#475569',
|
|
700: '#334155',
|
|
800: '#1e293b',
|
|
900: '#0f172a',
|
|
950: '#020617'
|
|
}
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
mono: ['JetBrains Mono', 'Fira Code', 'monospace']
|
|
},
|
|
animation: {
|
|
'flow': 'flow 2s ease-in-out infinite',
|
|
'pulse-slow': 'pulse 3s ease-in-out infinite',
|
|
'fade-in': 'fadeIn 0.5s ease-out'
|
|
},
|
|
keyframes: {
|
|
flow: {
|
|
'0%, 100%': { strokeDashoffset: '0' },
|
|
'50%': { strokeDashoffset: '20' }
|
|
},
|
|
fadeIn: {
|
|
'0%': { opacity: '0', transform: 'translateY(10px)' },
|
|
'100%': { opacity: '1', transform: 'translateY(0)' }
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|