-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (36 loc) · 891 Bytes
/
tailwind.config.js
File metadata and controls
36 lines (36 loc) · 891 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend:{
// backgroundColor: {
// "primary-1": "#0DCEDA",
// "primary-2": "#6EF3D6",
// "primary-3": "#C6FCE5",
// "primary-4": "#EBFFFA",
// "secondary-1": "#02E675",
// "secondary-2": "#62F08A",
// "error-1": "#FF8282",
// "greyscale-1": "#F5F5F5",
// "greyscale-2": "#CCCCCC"
// },
// textColor: {
// "primary": "#025FE6",
// "secondary": "#22A347",
// "error": "#EF6262",
// "content": "#7F7F7F"
// },
},
},
plugins: [
require('daisyui'),
require('tailwindcss-bg-patterns'),
],
daisyui: {
themes: false,
},
}