-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
62 lines (60 loc) · 1.23 KB
/
tailwind.config.js
File metadata and controls
62 lines (60 loc) · 1.23 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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const colors = require('tailwindcss/colors')
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.{ts,tsx}",
],
theme: {
extend: {
borderRadius: {
'4xl': '1.875rem',
},
gridTemplateColumns: {
16: 'repeat(16, minmax(0, 1fr))',
},
gridColumn: {
'span-7-end': 'span 7 / span 7',
},
maxWidth: {
2: '2rem',
4: '4rem',
8: '8rem',
10: '10rem',
12: '12rem',
13: '13rem',
26: '26rem',
},
},
minWidth: {
md: ' 28rem',
},
colors: {
...colors,
transparent: 'transparent',
current: 'currentColor',
inherit: 'inherit',
primary: {
DEFAULT: '#ff731d',
main: '#ff731d',
text: 'black',
hover: '#FF9A5C',
},
secondary: '#657153',
highlighter: {
DEFAULT: '#48639c',
main: '#48639c',
text: 'white',
hover: '#738BBF',
},
base: '#fff7e9',
'base-2': '#e4dfda',
color: {
DEFAULT: '#707070',
light: '#707070',
dark: '#000000',
},
},
},
plugins: [],
}