-
Notifications
You must be signed in to change notification settings - Fork 8
/
tailwind.config.js
68 lines (66 loc) · 1.59 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
60
61
62
63
64
65
66
67
68
/** @type {import('tailwindcss').Config} */
const withMT = require("@material-tailwind/react/utils/withMT");
/*
Color Codes:
Yellow: #ffe21e
Red: #f30f49
Green: #00bc81
Blue: 007fc1
*/
module.exports = withMT({
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./includes/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: 'class',
theme: {
extend: {
'animation': {
'text':'text 5s ease infinite',
},
'keyframes': {
'text': {
'0%, 100%': {
'background-size':'200% 200%',
'background-position': 'left center'
},
'50%': {
'background-size':'200% 200%',
'background-position': 'right center'
}
},
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
sankalan: {
yellow: "#ffe21e",
red: "#f30f49",
green: "#00bc81",
blue: "#007fc1",
},
'sankalan-accent': {
yellow: "#ff7f00",
red: "#a31313",
green: "#187734",
blue: "#0948a9",
},
'sankalan-dark': {
yellow: "#ff3f00",
red: "#7a0b0b",
green: "#0f3e0d",
blue: "#011c79",
}
}
},
},
variants: {
extend: {},
},
plugins: [],
});