-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtailwind.config.js
More file actions
60 lines (59 loc) · 1.42 KB
/
tailwind.config.js
File metadata and controls
60 lines (59 loc) · 1.42 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx}', './pages-content/**/*.mdx'],
darkMode: 'selector', // Already correct
theme: {
extend: {
fontFamily: {
heading: ['var(--font-bungee)', 'sans-serif'],
body: ['var(--font-belanosima)', 'sans-serif'],
},
colors: {
primary: {
50: '#FFC466',
100: '#FFBA4D',
200: '#FFB133',
300: '#FFA71A',
400: '#FF9D00',
500: '#E68D00',
600: '#CC7E00',
700: '#B36E00',
800: '#995E00',
900: '#804F00',
950: '#663F00',
},
secondary: {
50: '#FAA89D',
100: '#F69689',
200: '#F28476',
300: '#EE7163',
400: '#E95C4F',
500: '#E3453A',
600: '#DD2621',
700: '#C3201C',
800: '#A91A17',
900: '#901512',
950: '#78100D',
},
accent: {
50: '#FEE79C',
100: '#FEE389',
200: '#FEDF75',
300: '#FDDA5E',
400: '#FDD641',
500: '#FDD100',
600: '#DFB800',
700: '#C2A000',
800: '#A58800',
900: '#8A7100',
950: '#6F5B00',
},
background: {
light: '#FFF8F3',
dark: '#1A202C',
},
},
},
},
plugins: [require('@tailwindcss/typography')],
};