-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.cjs
44 lines (43 loc) · 1.31 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
const colors = require('tailwindcss/colors');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
future: {
hoverOnlyWhenSupported: true
},
theme: {
extend: {
gridTemplateColumns: {
display: 'repeat(auto-fill, minmax(250px, 1fr))'
},
fontFamily: {
serif: 'Georgia, ui-serif, Cambria, "Times New Roman", Times, serif',
sans: 'ui-sans-serif, -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", sans-serif'
},
keyframes: {
pingNoScale: {
'75%, 100%': { opacity: 0 }
}
},
animation: {
pingNoScale: 'pingNoScale 750ms cubic-bezier(0, 0, 0.2, 1) infinite;'
},
screens: {
standalone: { raw: '(display-mode: standalone)' }
},
colors: {
gray: colors.slate
},
borderColor: {
DEFAULT: colors.slate[200]
},
borderWidth: {
DEFAULT: '1.5px'
}
}
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms')({ strategy: 'class' })
]
}