-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) · 883 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
34 lines (34 loc) · 883 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
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
blue: "#1A73E8",
grey: "#F1F3F4",
hoverGrey: "#DDE1E2",
fontGrey: "#5f6368",
purple: "#7248B9",
indigo: "#3F51B5",
red: "#DB4437",
lightblue: "#03A9F4",
cyan: "#00BCD4",
redorange: "#FF5722",
orange: "#FF9800",
teal: "#009688",
green: "#4CAF50",
bluegray: "#607D8B",
gray: "#9E9E9E",
},
fontFamily: {
regular: ["Product Sans Regular"],
bold: ["Product Sans Bold"],
thin: ["Product Sans Thin Regular"],
basic: ["Product Sans Regular"],
decorative: ["Parisienne", "cursive"],
playful: ["Patrick Hand", "cursive"],
formal: ["Cormorant Garamond", "serif"],
},
},
},
plugins: [],
};