-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
83 lines (83 loc) · 3 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// https://tailwindcss.com/docs/configuration
import { fontFamily } from 'tailwindcss/defaultTheme'
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./src/components/**/*.{js,vue,ts}',
'./src/layouts/**/*.vue',
'./src/pages/**/*.vue',
'./src/plugins/**/*.{js,ts}',
'./src/app.vue',
'./src/error.vue',
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#ffb41d',
50: '#fff8e2',
100: '#ffecb5',
200: '#ffe086',
300: '#ffd556',
400: '#ffca34',
500: '#ffc122',
600: '#ffb41d',
700: '#fea11b',
800: '#fe9119',
900: '#fd7217',
},
secondary: {
DEFAULT: '#e91e63',
50: '#fce4ec',
100: '#f8bbd0',
200: '#f48fb0',
300: '#f06291',
400: '#ec4079',
500: '#e91e63',
600: '#d81b5f',
700: '#c2185a',
800: '#ad1356',
900: '#880d4e',
},
},
fontFamily: {
sans: ['"Zen Kaku Gothic New"', ...fontFamily.sans],
serif: ['"Zen Old Mincho"', ...fontFamily.serif],
},
gridTemplateColumns: {
'fill-0': 'repeat(auto-fill, minmax(0px, 1fr))',
'fill-1': 'repeat(auto-fill, minmax(0.25rem, 1fr))',
'fill-2': 'repeat(auto-fill, minmax(0.5rem, 1fr))',
'fill-3': 'repeat(auto-fill, minmax(0.75rem, 1fr))',
'fill-4': 'repeat(auto-fill, minmax(1rem, 1fr))',
'fill-5': 'repeat(auto-fill, minmax(1.25rem, 1fr))',
'fill-6': 'repeat(auto-fill, minmax(1.5rem, 1fr))',
'fill-7': 'repeat(auto-fill, minmax(1.75rem, 1fr))',
'fill-8': 'repeat(auto-fill, minmax(2rem, 1fr))',
'fill-9': 'repeat(auto-fill, minmax(2.25rem, 1fr))',
'fill-10': 'repeat(auto-fill, minmax(2.5rem, 1fr))',
'fill-11': 'repeat(auto-fill, minmax(2.75rem, 1fr))',
'fill-12': 'repeat(auto-fill, minmax(3rem, 1fr))',
'fill-14': 'repeat(auto-fill, minmax(3.5rem, 1fr))',
'fill-16': 'repeat(auto-fill, minmax(4rem, 1fr))',
'fill-20': 'repeat(auto-fill, minmax(5rem, 1fr))',
'fill-24': 'repeat(auto-fill, minmax(6rem, 1fr))',
'fill-28': 'repeat(auto-fill, minmax(7rem, 1fr))',
'fill-32': 'repeat(auto-fill, minmax(8rem, 1fr))',
'fill-36': 'repeat(auto-fill, minmax(9rem, 1fr))',
'fill-40': 'repeat(auto-fill, minmax(10rem, 1fr))',
'fill-44': 'repeat(auto-fill, minmax(11rem, 1fr))',
'fill-48': 'repeat(auto-fill, minmax(12rem, 1fr))',
'fill-52': 'repeat(auto-fill, minmax(13rem, 1fr))',
'fill-56': 'repeat(auto-fill, minmax(14rem, 1fr))',
'fill-60': 'repeat(auto-fill, minmax(15rem, 1fr))',
'fill-64': 'repeat(auto-fill, minmax(16rem, 1fr))',
'fill-72': 'repeat(auto-fill, minmax(18rem, 1fr))',
'fill-80': 'repeat(auto-fill, minmax(20rem, 1fr))',
'fill-96': 'repeat(auto-fill, minmax(24rem, 1fr))',
},
},
},
plugins: [],
darkMode: 'class',
}