-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (38 loc) · 1.12 KB
/
tailwind.config.js
File metadata and controls
42 lines (38 loc) · 1.12 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./server/views/**/*.hbs", "./public/**/*.js"],
theme: {
extend: {
colors: {
"title-blue": "#1c398e",
"icon-blue": "#2563eb",
"welcome-blue": "#1c398e",
"feature-blue": "#1c398e",
},
fontFamily: {
montserrat: ["Montserrat", "sans-serif"],
playfair: ["Playfair Display", "serif"],
poppins: ["Poppins", "sans-serif"],
merriweather: ["Merriweather", "serif"],
inter: ["Inter", "sans-serif"],
roboto: ["Roboto", "sans-serif"],
nunito: ["Nunito", "sans-serif"],
raleway: ["Raleway", "sans-serif"],
lato: ["Lato", "sans-serif"],
quicksand: ["Quicksand", "sans-serif"],
sourcesans: ["Source Sans 3", "sans-serif"],
barlow: ["Barlow", "sans-serif"],
marhey: ["Marhey", "cursive"],
baloo2: ["Baloo 2", "cursive"],
},
typography: (theme) => ({
DEFAULT: {
css: {
h2: {},
},
},
}),
},
},
plugins: [require("@tailwindcss/typography")],
};