-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
61 lines (60 loc) · 2.04 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content:
[
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/features/**/*.{js,ts,jsx,tsx,mdx}',
'./src/views/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/layouts/**/*.{js,ts,jsx,tsx,mdx}',
'./src/plugin/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
fontFamily: {
'Inter': ["Inter", "Sans-serif"],
'Poppins': ["Poppins", "Sans-serif"],
'Barlow': ["Barlow", "Sans-serif"],
'Arial': ["Arial", "Sans-serif"],
'Outfit': ["Outfit", "Sans-serif"],
},
extend: {
textColor : {
"custom-red":
'rgba(239, 35, 60, 1)',
},
backgroundImage:{
"hero-section1" : "url('../../public/hero1.png')"
},
backgroundColor: {
"custom-cart":
"rgba(237,242,244,0.02)",
"custom-red":
'rgba(239, 35, 60, 1)',
"tab-choose": 'rgba(237, 242, 244, 0.08)',
"swap-selection-input": "rgba(237, 242, 244, 0.03)",
"success-gradient" : "linear-gradient(180deg, #7FD482 0%, rgba(237, 242, 244, 0.00) 100%)",
},
borderColor: {
"accent-dark": "rgba(237, 242, 244, 0.08)"
}
}
},
daisyui:
{
themes: [
{
mytheme: {
"primary": "#EF233C",
"success": "#7FD482",
"secondary": "rgba(237, 242, 244, 0.03)",
"accent": "#EDF2F4",
"neutral": "#8D99AE",
"base-100": "#2B2D42",
},
},
],
}
,
plugins: [require("@tailwindcss/typography"), require("daisyui")],
}