-
Notifications
You must be signed in to change notification settings - Fork 8
/
tailwind.config.js
76 lines (75 loc) · 2.05 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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
purge: ['src/**/*.js', 'src/**/*.jsx', 'src/**/*.ts', 'src/**/*.tsx', 'public/**/*.html'],
theme: {
extend: {
fontSize: {
xxs: '.5rem',
},
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
colors: {
'orange-dark': '#DB7D68',
'pressed-gray': '#E0DEDE',
'dark-cool': '#364152',
'neutral-gray': '#F6F4F4',
'ghost-white': '#F8FFFF',
'green-darker': '#24AAAD',
'custom-link': '#364F6B',
'card-gray':'#EDF2F7',
primary: {
100: '#D4F2F3',
200: '#A9E5E7',
300: '#7DD8DA',
400: '#65CFD3',
500: '#27BEC2',
600: '#13A5A9',
700: '#177274',
800: '#104C4E',
900: '#082627',
},
secondary: {
100: '#FCE9E4',
200: '#F9D2C9',
300: '#FCBEAF',
400: '#F3A592',
500: '#F08F77',
600: '#C0725F',
700: '#905647',
800: '#603930',
900: '#301D18',
},
linen: {
100: '#FFFDFB',
200: '#FFFBF6',
300: '#FFF8F2',
400: '#FFF6ED',
500: '#FFF4E9',
600: '#CCC3BA',
700: '#99928C',
800: '#66625D',
900: '#33312F',
},
bluish: {
500: '#EDF2F7',
},
},
screens: {
'md-max': { max: '1024px' },
'sm-max': { max: '600px' },
'2xl': '1920px',
},
maxHeight: { 0: '0', 200: '200px' },
},
},
variants: {
textColor: ['responsive', 'hover', 'focus', 'group-hover', 'group-focus', 'disabled'],
opacity: ['disabled', 'hover', 'group-hover'],
cursor: ['disabled', 'hover'],
backgroundColor: ['checked', 'disabled', 'hover', 'group-hover'],
width: ['hover', 'responsive', 'focus'],
borderColor: ['disabled'],
},
plugins: [require('@tailwindcss/aspect-ratio'), require('@tailwindcss/ui')({ layout: 'sidebar' })],
}