-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
59 lines (55 loc) · 1.68 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
49
50
51
52
53
54
55
56
57
58
59
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
purge: [
"./storage/framework/views/*.php",
"./resources/views/**/*.blade.php",
"./resources/**/*.js",
],
theme: {
extend: {
fontFamily: {
sans: ["Poppins", ...defaultTheme.fontFamily.sans],
},
tableLayout: ["hover", "focus"],
minWidth: {
"1/4": "25%",
"1/2": "50%",
"3/4": "75%",
"e-1/4": "25vh",
"e-3/4": "75vh",
},
minHeight: {
"1/4": "25vh",
"3/4": "75vh",
},
colors: {
imdb: {
black: "#0f0e1b",
blue: "#4e51ff",
"blue-dark": "#282aa9",
"blue-light": "#9c9dfa",
gray: "#676672",
"gray-dark": "#4d4c56",
"gray-light": "#a8a7b6",
green: "#00bb6c",
"green-dark": "#00884f",
"green-light": "#51ebaa",
purpure: "#ef4d88",
"purpure-dark": "#8b274b",
"purpure-light": "#ff9fc2",
red: "#e83535",
"red-dark": "#ac2020",
"red-light": "#ff8888",
card: "#3a3948",
border: "#b9b8c3",
},
},
},
},
variants: {
extend: {
opacity: ["disabled"],
},
},
plugins: [require("@tailwindcss/forms"), require("tailwindcss-textshadow")],
};