forked from sathyat20/sessions-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (31 loc) · 913 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (31 loc) · 913 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["Libre Franklin", "sans-serif"],
},
backgroundColor: {
fill: {
primary: "hsl(var(--color-primary) / 1)",
secondary: "hsl(var(--color-secondary) / 1)",
bg: "hsl(var(--color-bg) / 1)",
},
},
textColor: {
txtcolor: {
primary: "hsl(var(--text-pri) / 1)",
secondary: "hsl(var(--text-secondary) / 1)",
neutral: "hsl(var(--text-neutral) / 1)",
},
},
backgroundImage: {
'orchestra': "url('https://firebasestorage.googleapis.com/v0/b/sessions-7df6d.appspot.com/o/utilities%2Forchestra.jpeg?alt=media&token=39d1a233-c2ca-441b-91d5-34c4f6ec5c40')"
}
},
plugins: [],
},
variants: {},
plugins: [],
};