forked from ICECSP/ICECSP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
37 lines (36 loc) · 943 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
/** @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: {
fontFamily : {
mont : "'Montserrat', sans-serif"
},
colors: {
// primaryRegular: "#309c86",
// primaryLight: "#48bdad",
// primaryDark: "#073d27",
// primary90: "#1f7d64",
// primary80: "#58d0c5",
// primary50: "#83ded8",
// primary20: "#b7edea",
// primary10: "#d3f5f3",
// primary05: "#f5fcfc",
primaryRegular: "#0ea5e9",
primaryLight: "#fafdff",
primaryDark: "#082f49",
primary90: "#0c4a6e",
primary80: "#075985",
primary50: "#0ea5e9",
primary20: "#bae6fd",
primary10: "#e0f2fe",
primary05: "#f0f9ff",
},
},
},
plugins: [],
}