-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (47 loc) · 995 Bytes
/
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
/** @type {import('tailwindcss').Config} */
import defaultTheme from 'tailwindcss/defaultTheme'
import forms from '@tailwindcss/forms'
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
'sans': ['Quicksand', ...defaultTheme.fontFamily.sans],
},
colors: {
black: {
default: '#404040',
},
gray: {
default: '#BCBCBC',
dark: '#7A7A7A',
line: '#D9D9D9',
},
customWhite: {
warm: '#FFF3DA',
dark: '#ECECEC',
},
orange: {
default: '#FC6E20',
defaultDark: '#E0631E',
light: '#FF8A00',
},
},
},
container: {
padding: '2rem',
center: true,
screens: {
sm: '540px',
md: '720px',
lg: '960px',
xl: '1140px',
'2xl': '1320px',
},
},
},
plugins: [forms],
}