-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
38 lines (36 loc) · 987 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: [
"./app/view/**/*.{html,js,php}",
// Checking for class reference in JS/TS files that could be in these folders
"./resources/**/*.{html,js,php}",
"./assets/**/*.{html,js,php}"
],
theme: {
extend: {
colors: {
white: {
DEFAULT: "#fdfdfd",
pure: "#ffffff"
},
black: {
DEFAULT: "#202020",
pure: "#000000"
},
primary: {
DEFAULT: "#003366",
dark: "#002952"
},
secondary: {
DEFAULT: "#fed233",
dark: "#f9c800"
}
},
width: {
desktop: "1365px",
mobile: "100vw"
}
},
},
plugins: []
}