-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
40 lines (38 loc) · 1015 Bytes
/
tailwind.config.js
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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const colors = require('tailwindcss/colors');
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}', './app/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
colors: {
green: '#1DD197',
black: '#242323',
white: '#FFFFFF',
gray: colors.neutral[300],
'gray-medium': '#A9A9A9',
'gray-dark': '#4A4A4A',
current: 'currentColor',
transparent: 'transparent',
red: colors.rose
},
fontFamily: {
libre: ['Libre Baskerville', 'sans-serif'],
quicksand: ['Quicksand', 'sans-serif']
},
extend: {
screens: {
'3xl': '1920px',
'4xl': '2560px'
},
fontFamily: {
libre: ['Libre Baskerville', 'LocalLibreBaskerville', 'sans-serif'],
quicksand: ['Quicksand', 'LocalQuicksand', 'sans-serif']
}
}
},
variants: {
extend: {
fontWeight: ['hover', 'focus']
}
},
plugins: [require('@headlessui/tailwindcss')]
};