-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
59 lines (58 loc) · 1.35 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
const colors = require('tailwindcss/colors')
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
container: {
screens: {
sm: '100%',
md: '100%',
lg: '1280px',
xl: '1440px',
},
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.coolGray,
indigo: colors.indigo,
violet: colors.violet,
blue: colors.blue,
cyan: colors.cyan,
green: colors.emerald,
lime: colors.lime,
orange: colors.orange,
red: colors.red,
rose: colors.rose,
pink: colors.pink,
teal: colors.teal,
yellow: colors.amber,
},
fontFamily: {
sans: ['Maven Pro', ...defaultTheme.fontFamily.sans],
display: ['Maven Pro', ...defaultTheme.fontFamily.sans],
body: ['Maven Pro', ...defaultTheme.fontFamily.sans],
},
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px',
xxl: '1920px',
},
extend: {},
},
variants: {
extend: {
margin: ['last'],
translate: ['group-hover'],
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
],
}