generated from hyperlane-xyz/hyperlane-app-template
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtailwind.config.js
54 lines (52 loc) · 1.11 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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
fontFamily: {
sans: ['Neue Haas Grotesk', 'Helvetica', 'sans-serif'],
serif: ['serif'],
mono: ['Courier New', 'monospace'],
},
extend: {
colors: {
black: '#010101',
white: '#ffffff',
beige: {
100: '#F6F4F1',
200: '#F5F2EF',
300: '#F3F0ED',
400: '#F2EEEB',
500: '#F1EDE9',
600: '#D8D5D1',
700: '#C0BDBA',
800: '#A8A5A3',
900: '#908E8B',
},
red: {
100: '#F28B84',
200: '#F07770',
300: '#EE645B',
400: '#EC5147',
500: '#EA3E33',
600: '#D2372D',
700: '#BB3128',
800: '#A32B23',
900: '#8C251E',
}
},
spacing: {
100: '26rem',
112: '28rem',
128: '32rem',
144: '36rem',
},
borderRadius: {
'4xl': '2rem',
},
},
},
plugins: [],
}