-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
executable file
·62 lines (61 loc) · 1.16 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
const defaultTheme = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors')
module.exports = {
purge: [
'./pages/**/*.js',
'./components/**/*.js'
],
darkMode: false,
theme: {
colors: {
gray: colors.blueGray,
teal: colors.teal,
green: colors.green,
red: colors.red,
blue: colors.blue,
pink: colors.pink,
white: colors.white,
purple: colors.purple,
accent: {
900: '#f9b12a',
800: '#f9b83f',
700: '#fac054',
600: '#fac869',
500: '#fbd07f',
400: '#fcd894',
300: '#fcdfa9',
200: '#fde7bf',
100: '#fdefd4',
50: '#fef7e9',
},
dark: {
900: 'rgb(19,38,75)',
600: 'rgb(24,48,95)',
400: '#2f446f',
300: '#2f446f',
200: '#46597e',
100: '#5d6e8f',
},
},
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
height: {
xxl: '520px',
}
},
},
variants: {
extend: {
backgroundColor: ['group-focus'],
opacity: ['group-hover', 'group-focus'],
display: ['group-hover'],
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
],
}