-
Notifications
You must be signed in to change notification settings - Fork 30
/
tailwind.config.js
94 lines (92 loc) · 1.82 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { fontFamily } = require('tailwindcss/defaultTheme')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
prefix: '',
important: false,
separator: ':',
theme: {
extend: {
fontFamily: {
sans: ['var(--font-inter)', ...fontFamily.sans],
},
},
colors: {
transparent: 'transparent',
primary: '#52575c',
secondary: '#67bd41',
juniper: '#67bd41',
light_juniper: '#83f251',
slate: '#52575c',
honey: '#f6d87c',
vanilla: {
100: '#ffffff',
200: '#f5f5f5',
300: '#eeeeee',
400: '#c0c1c3'
},
gray: {
300: '#D1D5DB'
},
indigo: {
50: '#FAFAFF',
600: '#604FDD',
},
ink: {
100: '#373c49',
200: '#2c303a',
300: '#21242c',
400: '#16181d'
},
slate: {
700: '#334155'
},
neutral: {
200: '#E5E5E5'
},
violet: {
50: '#F1F0FF',
100: '#E9E7FF'
},
zinc: {
900: '#3A3A62'
}
},
borderRadius: {
none: '0',
sm: '0.125rem',
md: '0.25rem',
lg: '0.375rem',
full: '9999px'
},
borderWidth: {
DEFAULT: '1px',
},
fontFamily: {
sans: ['Inter'],
serif: ['Georgia', 'serif'],
mono: ['Menlo', 'monospace']
},
fontSize: {
xs: '0.75rem',
sm: '0.875rem',
base: '1rem',
lg: '1.25rem',
xl: '1.375rem',
'2xl': '1.75rem',
'3xl': '2.75rem',
'4xl': '4rem'
},
fontWeight: {
normal: '400',
medium: '500',
semibold: '600',
bold: '700'
}
},
corePlugins: {}
}