-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
39 lines (38 loc) · 959 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./domains/**/*.{js,ts,jsx,tsx,mdx}",
"./shared/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
gradientColors: {
'card-gradient': ['#D9FFBC', '#FCF286'],
'bg-gradient': ['#E9E9E9', '#FFFFFF'],
},
primary: "#000000",
secondary: "#F2F2F2",
},
fontSize: {
},
fontFamily: {
inter: [
"Inter var",
{
fontFeatureSettings: '"cv11", "ss01"',
fontVariationSettings: '"opsz" 32'
},
],
strong: "Poppins, sans-serif",
primary: "Raleway, sans-serif",
secondary: "Futura Std, sans-serif",
sacramento: "Sacramento, cursive",
},
},
},
plugins: [],
}