-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.32 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} */
export default {
content: [
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./components/**/*.vue',
'./error.vue',
],
theme: {
extend: {
colors: {
appAccent: {
100: '#9FA8A3',
DEFAULT: '#0A2213',
},
appGray: {
100: '#F9F7F5',
200: '#E6E9E7',
300: '#D6D6D6',
400: '#757182',
500: '#686473',
600: '#4A4752',
700: '#37353D',
800: '#121212',
},
appWarning: '#FC5E5E',
},
fontFamily: {
inter: ['Inter', 'sans-serif'],
PlayfairDisplay: ['Playfair Display', 'serif'],
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
lg: '2rem',
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1360px',
},
},
},
},
plugins: [],
};