-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.js
56 lines (55 loc) · 1.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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
theme: {
extend: {
fontFamily: {
sans: ['ui-sans-serif', 'system-ui'],
},
colors: {
simplydiary: {
primary: '#d41a4c',
secondary: '#E75B80',
},
simplydiarynew: {
primary: '#000000',
secondary: '#2C3E50',
},
gray: {
50: '#fafafa',
100: '#f5f5f5',
200: '#eeeeee',
300: '#e0e0e0',
400: '#bdbdbd',
500: '#9e9e9e',
600: '#757575',
700: '#12100c',
800: '#424242',
900: '#212121',
},
},
spacing: {
'7': '1.75rem',
'9': '2.25rem',
'28': '7rem',
'80': '20rem',
'96': '24rem',
},
height: {
'1/2': '50%',
},
scale: {
'30': '.3',
},
boxShadow: {
outline: '0 0 0 3px rgba(0, 0, 0, 0.4)',
},
},
},
variants: {
scale: ['responsive', 'hover', 'focus', 'group-hover'],
textColor: ['responsive', 'hover', 'focus', 'group-hover'],
opacity: ['responsive', 'hover', 'focus', 'group-hover'],
backgroundColor: ['responsive', 'hover', 'focus', 'group-hover'],
},
plugins: [require('@tailwindcss/custom-forms')],
}