-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (49 loc) · 1.13 KB
/
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
43
44
45
46
47
48
49
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
screens: {
esm: { min: '510px' },
sm: { min: '640px' },
md: { min: '768px' },
lg: { min: '1024px' },
},
fontFamily: {
sans: 'var(--font-roboto)',
alt: 'var(--font-roboto-condensed)',
},
colors: {
gray: {
50: '#eaeaea',
100: '#bebebf',
200: '#9e9ea0',
300: '#727275',
400: '#56565a',
500: '#2c2c31',
600: '#28282d',
700: '#1f1f23',
800: '#18181b',
900: '#121215',
},
green: {
50: '#e6fbef',
100: '#b1f1ce',
200: '#8cebb6',
300: '#57e295',
400: '#36dc81',
500: '#04d361',
600: '#04c058',
700: '#039645',
800: '#027435',
900: '#025929',
},
},
},
},
plugins: [require('@tailwindcss/forms')],
}