-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
68 lines (65 loc) · 1.37 KB
/
tailwind.config.js
File metadata and controls
68 lines (65 loc) · 1.37 KB
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
green: {
darkest: '#043310',
dark: '#155526',
DEFAULT: '#62AA75',
light: '#62AA75',
lightest: '#E4FFEB',
},
purple: {
darkest: '#3E2066',
dark: '#6F4E99',
DEFAULT: '#AA91CC',
light: '#AA91CC',
lightest: '#EFE3FF',
},
amber: {
darkest: '#553915',
dark: '#AA8B62',
DEFAULT: '#D7BB98',
light: '#D7BB98',
lightest: '#FFF3E3',
},
},
gridTemplateColumns: {
13: 'repeat(13, minmax(0, 1fr))',
},
fontFamily: {
'sans': ['"Inter"', ...defaultTheme.fontFamily.sans],
},
borderRadius: {
'4xl': '2rem',
},
height: {
'88': '22rem',
'96': '24rem',
'108': '26rem',
'120': '28rem',
'128': '32rem',
},
width: {
'88': '22rem',
'96': '24rem',
'108': '26rem',
'120': '28rem',
'128': '32rem',
},
maxHeight: {
'88': '22rem',
},
maxWidth: {
'88': '22rem',
}
},
},
plugins: [],
}