-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
70 lines (69 loc) · 1.57 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
module.exports = {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
],
corePlugins: {
container: false,
},
theme: {
fontFamily: {
sans: ['acumin-pro-wide', 'sans-serif'],
},
screens: {
s: '440px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
},
extend: {
screens: {
'hover-none': { raw: '(hover: none)' },
xs: { max: '350px' },
},
colors: {
primary: '#1E1796',
'primary-light': '#D4E2FF',
'primary-dark': '#0F0787',
secondary: '#00D48F',
'secondary-dark': '#00563C',
additional: '#FFCC00',
light: '#6E88FF',
gray: '#525252',
dark: '#161616',
},
spacing: {
'block-0.5': '1.875rem',
'block-0.75': '2.8125rem',
'block-1': '3.75rem',
'block-1.5': '5.625rem',
'block-2': '7.5rem',
'block-3': '11.25rem',
'block-4': '15rem',
'block-4.5': '16.875rem',
'block-5': '18.75rem',
'block-6': '22.5rem',
'block-7': '26.25rem',
'block-8': '30rem',
'block-10': '37.5rem',
'block-12': '45rem',
},
typography: ({ theme }) => ({
DEFAULT: {
css: {
'--tw-prose-bullets': theme('colors.secondary'),
},
},
}),
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
],
};