forked from OpenInternet/Infuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
64 lines (64 loc) · 1.48 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./content/**/*.md', './content/**/*.html', './layouts/**/*.html'],
darkMode: 'media',
theme: {
fontFamily: {
serif: ['Outfit', 'sans-serif'],
sans: ['Inter', 'sans-serif',]
},
extend: {
colors: {
green: {
25: '#F6FEF9',
50: '#EDFCF2',
100: '#D3F8DF',
200: '#AAF0C4',
300: '#73E2A3',
400: '#3CCB7F',
500: '#16B364',
600: '#099250',
700: '#087443',
800: '#095C37',
900: '#084C2E',
950: '#052E1C',
},
gray: {
25: '#FDFDFC',
50: '#FAFAF9',
100: '#F5F5F4',
200: '#E7E5E4',
300: '#D7D3D0',
400: '#A9A29D',
500: '#79716B',
600: '#57534E',
700: '#44403C',
800: '#292524',
900: '#1C1917',
950: '#171412',
},
orange: {
25: '#FEFAF5',
50: '#FEF6EE',
100: '#FDEAD7',
200: '#F9DBAF',
300: '#F7B27A',
400: '#F38744',
500: '#EF6820',
600: '#E04F16',
700: '#B93815',
800: '#932F19',
900: '#772917',
950: '#511C10',
},
},
boxShadow: {
'3xl': '8px 8px 0px 0px rgba(208, 213, 221, 1)',
},
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms')
],
}