-
Notifications
You must be signed in to change notification settings - Fork 17
/
tailwind.config.cjs
56 lines (52 loc) · 1.26 KB
/
tailwind.config.cjs
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
const colors = require('tailwindcss/colors');
const config = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
flex: {
'2': '2 2 0%',
'3': '3 3 0%'
},
fontFamily: {
mono: 'VT323'
},
fontSize: {
tiny: '12px',
xxs: '16px'
},
rotate: {
30: '30deg'
},
gridTemplateColumns: {
'20': 'repeat(20, minmax(0, 1fr))',
},
animation: {
'ping-slow': 'ping 3s ease infinite',
'spin-slow': 'spin 3s linear infinite',
'spin-slow-2': 'spin 4s linear infinite',
'full-pulse': 'full-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'shake': 'shake 3.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite',
'shake-fast': 'shake 2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite',
},
dropShadow: {
text: '2px 2px 0 rgba(0, 0, 0, 0.9)',
grave: '1px 1px 0 rgba(0, 0, 0, 0.5)',
},
scale: {
65: '0.65',
200: '2',
250: '2.5'
},
colors: {
orange: colors.orange,
lime: colors.lime,
gray: colors.neutral
}
}
},
darkMode: 'class',
plugins: [
require('@tailwindcss/line-clamp'),
]
};
module.exports = config;