-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
82 lines (80 loc) · 1.99 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
// See https://tailwindcss.com/docs/configuration for details
const { colors } = require('tailwindcss/defaultTheme')
const BRAND_COLOR = '#ff6633'
const BRAND_COLOR_LIGHT = '#f9c2b1'
const BRAND_COLOR_DARK = '#b83400' // '#f24e2d'
const BRAND_COLOR_TEXT_HEADING = '#646464'
const BRAND_COLOR_LIGHT_TEXT_BODY = '#4a4a4a'
const BRAND_COLOR_TEXT_BODY = '#323232'
module.exports = {
theme: {
extend: {
boxShadow: {
default: '0 0 25px 0 rgba(0, 0, 0, 0.15)'
},
colors: {
brand: BRAND_COLOR,
'brand-light': BRAND_COLOR_LIGHT,
'brand-dark': BRAND_COLOR_DARK,
gray: {
...colors.gray,
'100': '#f5f5f5',
'400': '#c8c8c8',
'500': 'rgba(50, 50, 50, 0.48)',
'550': '#6f6f6f',
'600': BRAND_COLOR_TEXT_HEADING,
'700': BRAND_COLOR_LIGHT_TEXT_BODY,
'800': BRAND_COLOR_TEXT_BODY
}
},
fontFamily: {
sans: [
'Roboto',
'-apple-system',
'BlinkMacSystemFont',
'"Segoe UI"',
'"Helvetica Neue"',
'Arial',
'"Noto Sans"',
'sans-serif',
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"'
]
},
fontSize: {
'4xl': '2rem',
'5xl': '2.5rem',
'6xl': '3.125rem'
},
spacing: {
'30': '7.5rem',
'34': '8.5rem'
},
textColor: {
body: BRAND_COLOR_TEXT_BODY,
heading: BRAND_COLOR_TEXT_HEADING,
brand: BRAND_COLOR,
'brand-light': BRAND_COLOR_LIGHT,
'brand-dark': BRAND_COLOR_DARK
},
maxWidth: {
'4xl': '57.25rem',
'6xl': '71.375rem', // '69.375rem'
'7xl': '86.4375rem'
},
margin: {
'9': '2.25rem',
'15': '3.75rem'
},
padding: {
'15': '3.75rem',
'23': '5.75rem',
'25': '6.25rem'
}
}
},
variants: {},
plugins: []
}