-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (36 loc) · 835 Bytes
/
tailwind.config.js
File metadata and controls
36 lines (36 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui', 'sans-serif'],
},
animation: {
'bounce': 'bounce 2s infinite',
},
keyframes: {
bounce: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(10px)' },
},
},
colors: {
blue: {
50: '#e6f2ff',
100: '#cce5ff',
200: '#99cbff',
300: '#66b0ff',
400: '#3396ff',
500: '#0a7cff',
600: '#0062cc',
700: '#004999',
800: '#003166',
900: '#001833',
},
},
},
},
plugins: [],
};