-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
40 lines (40 loc) · 1.17 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
container: {
center: true,
padding: "1rem",
},
extend: {
colors: {
mc: {
blue: {
100: "#d0e7f6",
200: "#a1cfee",
300: "#72b7e5",
400: "#439fdd",
500: "#1487d4",
600: "#106caa",
700: "#0c517f",
800: "#083655",
900: "#041b2a",
},
},
custom: {
footercontent: "#999999",
navandfooter: "#373737",
},
},
fontFamily: {
nunito: ["nunito", "Helvetica", "Arial", "sans-serif"],
verdana: ["Verdana", "Geneva", "Tahoma", "sans-serif"],
},
},
},
plugins: [require("tailwindcss"), require("autoprefixer")],
};