-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
42 lines (40 loc) · 911 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
41
42
// tailwind.config.js
const colors = require('tailwindcss/colors');
module.exports = {
mode: 'jit',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/app/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/templates/**/*.{js,ts,jsx,tsx}',
],
darkMode: 'media', // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: '#0AC5B3',
background: '#16181d',
background_100: '#2C2D30',
background_dark: '#1a1a1c',
},
fontFamily: {
sans: ['Inter'],
},
},
screens: {
xs: '300px',
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px',
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/forms')({
strategy: 'class',
}),
require('@tailwindcss/line-clamp'),
],
};