-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
48 lines (48 loc) · 1.08 KB
/
Copy pathtailwind.config.js
File metadata and controls
48 lines (48 loc) · 1.08 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#16a34a',
dark: '#34d399',
},
secondary: {
DEFAULT: '#7ea58d',
dark: '#9acdad',
},
background: {
primary: '#ffffff',
secondary: '#f0fdf4',
'primary-dark': '#111827',
'secondary-dark': '#1f2937',
},
text: {
DEFAULT: '#1c1c1c',
sub: '#6b7280',
'sub-dark': '#9ca3af',
},
border: {
DEFAULT: '#dee2e7',
},
black: '#000000',
white: '#FFFFFF',
gray: '#171717',
},
fontFamily: {
sans: ['var(--font-manrope)'],
},
},
},
plugins: [
// Add any Tailwind plugins here
// require('@tailwindcss/typography'),
// require('@tailwindcss/forms'),
],
}