-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (43 loc) · 1.12 KB
/
Copy pathtailwind.config.js
File metadata and controls
44 lines (43 loc) · 1.12 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
/** @type {import('tailwindcss').Config} */
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
safelist: [
'bg-dashYellow',
'bg-dashWhite',
'bg-dashPurple',
'bg-dashGreen',
'text-dashYellow',
'text-dashWhite',
'text-dashPurple',
'text-dashGreen',
],
theme: {
extend: {
colors: {
topOrange: '#FF9966',
customBlack: '#252525',
midnight: '#1B1C1E',
navyBlue: '#28334A',
dashYellow: '#F9DDAF',
dashWhite: '#EEEDEA',
dashPurple: '#EEE3FF',
dashGreen: '#B5D4CC',
},
fontFamily: {
'headings': ['Rubik', 'sans-serif'],
'main': ['Montserrat', 'sans-serif'],
'numbers': ['Onest', 'sans-serif'],
},
backgroundImage: {
'gradient-45': 'linear-gradient(45deg, var(--tw-gradient-stops))',
'top-orange': 'linear-gradient(135deg, #ff9966 0%, #ff5e62 100%)',
}
}
},
plugins: [],
});