mirror of
https://github.com/harivansh-afk/system-design.git
synced 2026-04-18 22:04:51 +00:00
claude one shot lol
This commit is contained in:
parent
7964b78a3a
commit
1ab3058cca
27 changed files with 5218 additions and 0 deletions
58
tailwind.config.js
Normal file
58
tailwind.config.js
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
/** @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: []
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue