mirror of
https://github.com/harivansh-afk/system-design.git
synced 2026-04-15 08:03:45 +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: '#fafafa',
|
|
100: '#f5f5f5',
|
|
200: '#e5e5e5',
|
|
300: '#d4d4d4',
|
|
400: '#a3a3a3',
|
|
500: '#737373',
|
|
600: '#525252',
|
|
700: '#262626',
|
|
800: '#141414',
|
|
900: '#0a0a0a',
|
|
950: '#000000'
|
|
}
|
|
},
|
|
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: []
|
|
};
|