-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
46 lines (45 loc) · 1.36 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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
'theme-primary': 'var(--theme-primary)',
'text-primary': 'var(--text-primary)',
'text-secondary': 'var(--text-secondary)',
'text-dark': 'var(--text-dark)',
'text-light': 'var(--text-light)',
'primary': 'var(--primary)',
'secondary': 'var(--secondary)',
'accent-0': 'var(--accent-0)',
'accent-1': 'var(--accent-1)',
'accent-2': 'var(--accent-2)',
'accent-3': 'var(--accent-3)',
'accent-4': 'var(--accent-4)',
'accent-5': 'var(--accent-5)',
'accent-6': 'var(--accent-6)',
'accent-7': 'var(--accent-7)',
'accent-8': 'var(--accent-8)',
'accent-9': 'var(--accent-9)',
},
boxShadow: {
'3xl': '0 0 6px rgba(0, 0, 0, 0.5)',
},
screens: {
'desktop': '900px', //var(--desktop)
'tablet': '600px', //var(--tablet)
'mobile': '480px', // var(--mobile)
'xs': '320px', // var(--xs)
},
},
fontFamily: {
'special': ['"Special Elite"', ...defaultTheme.fontFamily.sans],
'text': ['"Poppins"', ...defaultTheme.fontFamily.sans],
},
},
plugins: [],
important: '#app',
}