-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (44 loc) · 1.03 KB
/
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
39
40
41
42
43
44
45
46
47
48
module.exports = {
purge: ["./resources/views/*.ejs", "./resources/views/**/*.ejs"],
darkMode: false, // or 'media' or 'class'
theme: {
container: {
padding: "2rem",
},
screens: {
sm: "567px",
md: "768px",
// => @media (min-width: 768px) { ... }
lg: "992px",
// => @media (min-width: 1024px) { ... }
xl: "1200px",
// => @media (min-width: 1280px) { ... }
},
extend: {
colors: {
primary: "#fe5f1e",
primaryHover: "#fb5607",
secondary: "#f1f3f6",
secondaryDefault: "#f8f8f8",
pure: "#fff",
dark: "#232323",
facebook: "#395697",
amber200: "#FDE68A",
amber600: "#D97706",
orange200: "#FED7AA",
orange600: "#EA580C",
yellow200: "#FEF08A",
yellow600: "#CA8A04",
blue: "#F5FAFF",
footerBg: "#222E39",
},
},
},
fontFamily: {
body: ["Roboto", "sans-serif"],
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/forms")],
};